Skip to content

Commit

Permalink
Update linux packages in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sgb-io committed Jun 10, 2023
1 parent bec9c13 commit 8f5c249
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,18 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Update packages
run: sudo apt-get update

- name: Install aarch64 dependencies
run: sudo apt-get install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross

- name: Install ARM dependencies
run: sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross

- name: Install aarch64-unknown-linux-musl dependencies
run: sudo apt-get install -y musl-tools

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand All @@ -172,15 +184,6 @@ jobs:
rustup target add aarch64-unknown-linux-musl
rustup target add armv7-unknown-linux-gnueabihf
- name: Install aarch64 dependencies
run: sudo apt-get install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross

- name: Install ARM dependencies
run: sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross

- name: Install aarch64-unknown-linux-musl dependencies
run: sudo apt-get install -y musl-tools

- name: Install MUSL toolchain for AArch64
run: |
wget -q https://musl.cc/aarch64-linux-musl-cross.tgz
Expand Down

0 comments on commit 8f5c249

Please sign in to comment.