Skip to content

Commit

Permalink
Install libssl-dev on action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
maciektr committed Oct 28, 2023
1 parent 7eb2819 commit 5f82986
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/_build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ jobs:
shell: bash
run: echo "CARGO=cross" >> $GITHUB_ENV

- name: Install libssl
if: ${{ matrix.job.target == 'x86_64-unknown-linux-musl' }}
run: |
sudo apt-get update -y
sudo apt-get install -y gcc-aarch64-linux-gnu libssl-dev
- name: Build
run: ${{ env.CARGO }} build --release --locked --target ${{ matrix.target }}

Expand Down

0 comments on commit 5f82986

Please sign in to comment.