We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e831f commit 6053847Copy full SHA for 6053847
.github/workflows/ci.yml
@@ -73,11 +73,16 @@ jobs:
73
- name: Install Dependencies (Linux)
74
if: runner.os == 'Linux'
75
run: |
76
+ sudo dpkg --add-architecture arm64
77
sudo apt-get update
78
sudo apt-get install -y software-properties-common
79
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
80
- sudo apt-get install -y gcc gcc-aarch64-linux-gnu cmake libssl-dev pkg-config
81
+ if [ "${{ matrix.rust-target }}" = "aarch64-unknown-linux-gnu" ]; then
82
+ sudo apt-get install -y gcc-aarch64-linux-gnu cmake libssl-dev:arm64 pkg-config
83
+ else
84
+ sudo apt-get install -y gcc cmake libssl-dev pkg-config
85
+ fi
86
87
- name: Install Dependencies (macOS)
88
if: runner.os == 'macOS'
.idea/workspace.xml
0 commit comments