Skip to content

Commit

Permalink
fix: install libssl-dev on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
McPatate committed Sep 4, 2023
1 parent 300d12f commit ac1671e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,17 @@ jobs:
if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf'
run: sudo apt-get update

- name: Install openssl
if: matrix.os == 'ubuntu-20.04'
run: apt-get install libssl-dev

- name: Install AArch64 target toolchain
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get install gcc-aarch64-linux-gnu libssl-dev pkg-config
run: sudo apt-get install gcc-aarch64-linux-gnu

- name: Install ARM target toolchain
if: matrix.target == 'arm-unknown-linux-gnueabihf'
run: sudo apt-get install gcc-arm-linux-gnueabihf libssl-dev pkg-config
run: sudo apt-get install gcc-arm-linux-gnueabihf

- name: Dist
run: cargo xtask dist
Expand Down

0 comments on commit ac1671e

Please sign in to comment.