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