added OpenSSL dependencies (arm64)

This commit is contained in:
amd64fox 2025-11-08 10:42:38 +03:00
parent 432ad0301e
commit 467b7301ec

View file

@ -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