We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1990b88 commit 9b94e5eCopy full SHA for 9b94e5e
.github/workflows/build.yml
@@ -33,17 +33,18 @@ jobs:
33
runs-on: ${{ matrix.os }}
34
steps:
35
- uses: actions/checkout@v4
36
- - run: |
37
- make requirements
38
- sudo apt install gcc-12 g++-12
+ - run: make requirements
+ - if: runner.os == 'Linux'
+ run: |
39
+ sudo apt-get install g++-12
40
- name: Set up QEMU # Needed to build aarch64 wheels
41
if: runner.os == 'Linux'
42
uses: docker/setup-qemu-action@v3
43
with:
44
platforms: all
45
- uses: pypa/[email protected]
46
env:
- CXX: "g++12"
47
+ CXX: "g++-12"
48
- uses: actions/upload-artifact@v4
49
50
name: artifact-wheel-${{ matrix.os }}
0 commit comments