Skip to content

Commit

Permalink
fix(ci): install new openssl requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
sigaloid committed Nov 19, 2024
1 parent a96bebb commit 0714d58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
- if: matrix.target == 'x86_64-unknown-linux-musl'
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends musl-tools
sudo apt-get install -y --no-install-recommends musl-tools libssl-dev
- if: matrix.target == 'armv7-unknown-linux-musleabihf'
run: |
sudo apt update
sudo apt install -y gcc-arm-linux-gnueabihf musl-tools
sudo apt install -y gcc-arm-linux-gnueabihf musl-tools libssl-dev
- if: matrix.target == 'aarch64-unknown-linux-musl'
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu musl-tools
sudo apt install -y gcc-aarch64-linux-gnu musl-tools libssl-dev
- name: Versions
id: version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
with:
toolchain: stable

- name: Install musl-gcc
run: sudo apt-get install musl-tools
- name: Install musl-gcc and libssl-dev
run: sudo apt-get install musl-tools libssl-dev

- name: Install cargo musl target
run: rustup target add x86_64-unknown-linux-musl
Expand Down

0 comments on commit 0714d58

Please sign in to comment.