fix(pipeline): remove aarch64 due to no support and unify to single a… #115
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: Build | |
on: | |
push: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Build GNU static linked | |
run: RUSTFLAGS='-C target-feature=-crt-static' cargo build --target=x86_64-unknown-linux-gnu --release --verbose | |
- name: Build musl static linked | |
run: | | |
rustup target add x86_64-unknown-linux-musl | |
cargo build --target=x86_64-unknown-linux-musl --release --verbose | |
- name: Rename binaries | |
run: | | |
mv target/x86_64-unknown-linux-musl/release/rwpspread target/x86_64-unknown-linux-musl/release/rwpspread_musl | |
- name: Generate Checksums | |
run: | | |
sha512sum target/x86_64-unknown-linux-gnu/release/rwpspread > target/x86_64-unknown-linux-gnu/release/rwpspread.sha512sum | |
sha512sum target/x86_64-unknown-linux-musl/release/rwpspread_musl > target/x86_64-unknown-linux-musl/release/rwpspread_musl.sha512sum | |
- name: Upload release files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rwpspread-latest | |
path: | | |
target/x86_64-unknown-linux-gnu/release/rwpspread | |
target/x86_64-unknown-linux-gnu/release/rwpspread.sha512sum | |
target/x86_64-unknown-linux-musl/release/rwpspread_musl | |
target/x86_64-unknown-linux-musl/release/rwpspread_musl.sha512sum |