fix(ci): more packages #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Build | |
on: | |
push: | |
paths-ignore: | |
- "*.md" | |
- "compose.*" | |
branches: | |
- "armbuild" | |
release: | |
types: [published] | |
workflow_dispatch: | |
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 clang lld musl-tools git perl libssl-dev pkg-config make | |
- if: matrix.target == 'armv7-unknown-linux-musleabihf' | |
run: | | |
sudo apt update | |
sudo apt install -y gcc-arm-linux-gnueabihf clang lld musl-tools git perl libssl-dev pkg-config make | |
- if: matrix.target == 'aarch64-unknown-linux-musl' | |
run: | | |
sudo apt update | |
sudo apt install -y gcc-aarch64-linux-gnu clang lld musl-tools git perl libssl-dev pkg-config make | |
- 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: RUSTFLAGS='-C target-feature=+crt-static' 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 | |