Skip to content

Commit

Permalink
fix(pipeline): missing sudo in aarch64 yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
0xk1f0 committed May 21, 2024
1 parent 3bb8cc3 commit eea96c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- name: Build GNU static linked
run: |
apt update && apt install -y gcc-aarch64-linux-gnu
sudo apt update && sudo apt install -y gcc-aarch64-linux-gnu
rustup target add aarch64-unknown-linux-gnu
RUSTFLAGS="-C target-feature=+crt-static -C linker=aarch64-linux-gnu-gcc" cargo build --target=aarch64-unknown-linux-gnu --release --verbose
- name: Generate Checksums
Expand Down

0 comments on commit eea96c5

Please sign in to comment.