added OpenSSL dependencies (arm64)
This commit is contained in:
parent
432ad0301e
commit
467b7301ec
1 changed files with 4 additions and 2 deletions
6
.github/workflows/build-to-release.yml
vendored
6
.github/workflows/build-to-release.yml
vendored
|
|
@ -85,9 +85,11 @@ jobs:
|
|||
- name: Install cross-compilation tools
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y pkg-config
|
||||
sudo apt-get install -y libssl-dev
|
||||
sudo apt-get install -y pkg-config libssl-dev
|
||||
|
||||
if [ "${{ matrix.rust_target }}" = "aarch64-unknown-linux-gnu" ]; then
|
||||
sudo dpkg --add-architecture arm64
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y gcc-aarch64-linux-gnu libssl-dev:arm64
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue