Skip to content

Commit 9b94e5e

Browse files
committed
Another attempt
1 parent 1990b88 commit 9b94e5e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,18 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v4
36-
- run: |
37-
make requirements
38-
sudo apt install gcc-12 g++-12
36+
- run: make requirements
37+
- if: runner.os == 'Linux'
38+
run: |
39+
sudo apt-get install g++-12
3940
- name: Set up QEMU # Needed to build aarch64 wheels
4041
if: runner.os == 'Linux'
4142
uses: docker/setup-qemu-action@v3
4243
with:
4344
platforms: all
4445
- uses: pypa/[email protected]
4546
env:
46-
CXX: "g++12"
47+
CXX: "g++-12"
4748
- uses: actions/upload-artifact@v4
4849
with:
4950
name: artifact-wheel-${{ matrix.os }}

0 commit comments

Comments
 (0)