build(deps): bump clap_complete from 4.5.23 to 4.5.24 in the cargo group #32
Workflow file for this run
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 for x86 | |
on: | |
push: | |
branches: [ "master" ] | |
paths: | |
- 'src/**' | |
- 'build.rs' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
pull_request: | |
branches: [ "master" ] | |
paths: | |
- 'src/**' | |
- 'build.rs' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
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 | |
- 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-x86 | |
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 |