diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index ad5cf02..608070a 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -6,13 +6,25 @@ on: - main workflow_dispatch: # Allows manual trigger +env: + REGISTRY_IMAGE: luciferscircle/redlib + jobs: build-and-push: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + platform: [linux/amd64, linux/arm64, linux/arm/v7] + target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl, armv7-unknown-linux-musleabihf] + steps: - name: Checkout code uses: actions/checkout@v3 + - name: Set up QEMU (for cross-platform builds) + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 @@ -26,5 +38,11 @@ jobs: uses: docker/build-push-action@v5 with: context: . + platforms: ${{ matrix.platform }} push: true - tags: luciferscircle/redlib:${{ github.sha }} + tags: | + ${{ env.REGISTRY_IMAGE }}:latest + ${{ env.REGISTRY_IMAGE }}:${{ github.sha }} + ${{ env.REGISTRY_IMAGE }}:${{ matrix.target }} + build-args: + TARGET: ${{ matrix.target }} diff --git a/.github/workflows/build-artifacts.yaml b/.github/workflows/build-artifacts.yaml deleted file mode 100644 index 695d1bf..0000000 --- a/.github/workflows/build-artifacts.yaml +++ /dev/null @@ -1,76 +0,0 @@ -name: Release Build - -on: - push: - paths-ignore: - - "*.md" - - "compose.*" - branches: - - "main" - release: - types: [published] - -env: - CARGO_TERM_COLOR: always - - CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER: aarch64-linux-gnu-gcc - CC_aarch64_unknown_linux_musl: aarch64-linux-gnu-gcc - CARGO_TARGET_ARMV7_UNKNOWN_LINUX_MUSLEABIHF_LINKER: arm-linux-gnueabihf-gcc - CC_armv7_unknown_linux_musleabihf: arm-linux-gnueabihf-gcc - -jobs: - build: - name: Rust project - latest - runs-on: ubuntu-latest - strategy: - matrix: - target: - - x86_64-unknown-linux-musl - - aarch64-unknown-linux-musl - - armv7-unknown-linux-musleabihf - steps: - - uses: actions/checkout@v4 - - - uses: actions-rust-lang/setup-rust-toolchain@v1 - with: - target: ${{ matrix.target }} - - - if: matrix.target == 'x86_64-unknown-linux-musl' - run: | - sudo apt-get update - sudo apt-get install -y --no-install-recommends musl-tools - - - if: matrix.target == 'armv7-unknown-linux-musleabihf' - run: | - sudo apt update - sudo apt install -y gcc-arm-linux-gnueabihf musl-tools - - - if: matrix.target == 'aarch64-unknown-linux-musl' - run: | - sudo apt update - sudo apt install -y gcc-aarch64-linux-gnu musl-tools - - - name: Versions - id: version - run: echo "VERSION=$(cargo metadata --format-version 1 --no-deps | jq .packages[0].version -r | sed 's/^/v/')" >> "$GITHUB_OUTPUT" - - - name: Build - run: cargo build --release --target ${{ matrix.target }} - - - name: Package release - run: tar czf redlib-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release/ redlib - - - name: Upload release - uses: softprops/action-gh-release@v1 - with: - tag_name: ${{ steps.version.outputs.VERSION }} - name: ${{ steps.version.outputs.VERSION }} - ${{ github.event.head_commit.message }} - draft: true - files: | - redlib-${{ matrix.target }}.tar.gz - body: | - - ${{ github.event.head_commit.message }} ${{ github.sha }} - generate_release_notes: true - - - diff --git a/.github/workflows/main-rust.yml b/.github/workflows/main-rust.yml deleted file mode 100644 index f38c01d..0000000 --- a/.github/workflows/main-rust.yml +++ /dev/null @@ -1,84 +0,0 @@ -name: Rust Build & Publish - -on: - push: - paths-ignore: - - "**.md" - - branches: - - 'main' - - release: - types: [published] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout sources - uses: actions/checkout@v3 - - - name: Cache Packages - uses: Swatinem/rust-cache@v2 - - - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - - - name: Install musl-gcc - run: sudo apt-get install musl-tools - - - name: Install cargo musl target - run: rustup target add x86_64-unknown-linux-musl - - # Building actions - - name: Build - run: RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --target x86_64-unknown-linux-musl - - - name: Versions - id: version - run: echo "VERSION=$(cargo metadata --format-version 1 --no-deps | jq .packages[0].version -r | sed 's/^/v/')" >> "$GITHUB_OUTPUT" - - # Publishing actions - - - name: Publish to crates.io - if: github.event_name == 'release' - run: cargo publish --no-verify --token ${{ secrets.CARGO_REGISTRY_TOKEN }} - - - name: Calculate SHA512 checksum - run: sha512sum target/x86_64-unknown-linux-musl/release/redlib > redlib.sha512 - - - name: Calculate SHA256 checksum - run: sha256sum target/x86_64-unknown-linux-musl/release/redlib > redlib.sha256 - - - uses: actions/upload-artifact@v4 - name: Upload a Build Artifact - with: - name: redlib - path: | - target/x86_64-unknown-linux-musl/release/redlib - redlib.sha512 - redlib.sha256 - - - - name: Release - uses: softprops/action-gh-release@v1 - if: github.base_ref != 'main' && github.event_name == 'release' - with: - tag_name: ${{ steps.version.outputs.VERSION }} - name: ${{ steps.version.outputs.VERSION }} - ${{ github.event.head_commit.message }} - draft: true - files: | - target/x86_64-unknown-linux-musl/release/redlib - redlib.sha512 - redlib.sha256 - body: | - - ${{ github.event.head_commit.message }} ${{ github.sha }} - generate_release_notes: true - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}