We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975960b commit f6e88c0Copy full SHA for f6e88c0
.github/workflows/jingle_python.yml
@@ -38,9 +38,10 @@ jobs:
38
- name: Install dependencies
39
run: |
40
sudo apt update && sudo apt install -y libclang-dev libz3-dev libstdc++-11-dev g++-multilib
41
- if [[ "${{ matrix.platform.target }}" == "aarch64" ]]; then
42
- sudo apt install -y aarch64-linux-gnu-g++
43
- fi
+ - name: Install dependencies (ARM only)
+ if: "${{ matrix.platform.target }}" == "aarch64"
+ run: |
44
+ sudo apt install -y aarch64-linux-gnu-g++
45
- name: Build wheels
46
uses: PyO3/maturin-action@v1
47
with:
0 commit comments