Skip to content

Commit

Permalink
Revert "Do not install OS-specific prerequisites for release builds."
Browse files Browse the repository at this point in the history
This reverts commit 4fedd6d.
  • Loading branch information
01mf02 committed Oct 31, 2023
1 parent 268bdd4 commit 7981a9f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install ARM/Linux prerequisites
if: startsWith(matrix.target, 'arm-unknown-linux-')
run: sudo apt-get -y install gcc-arm-linux-gnueabihf

- name: Install AArch64/Linux prerequisites
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get -y install gcc-aarch64-linux-gnu

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down

0 comments on commit 7981a9f

Please sign in to comment.