Skip to content

Commit a3a07f5

Browse files
committed
Matching patch
1 parent 2d275d4 commit a3a07f5

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/pypi-build-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
os: [ ubuntu-22.04, windows-2022, macos-13, macos-14 ]
35+
os: [ ubuntu-22.04, ubuntu-24.04-arm, windows-2022, macos-13, macos-14 ]
3636

3737
steps:
3838
- uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
# the repository, otherwise the tests will fail
6060
- name: Compile source distribution
6161
run: python3 -m poetry build --format=sdist
62-
if: startsWith(matrix.os, 'ubuntu')
62+
if: matrix.os == 'ubuntu-22.04'
6363

6464
- name: Build wheels
6565
uses: pypa/cibuildwheel@v2.23.3
@@ -77,7 +77,7 @@ jobs:
7777
CIBW_TEST_SKIP: "pp*"
7878

7979
- name: Add source distribution
80-
if: startsWith(matrix.os, 'ubuntu')
80+
if: matrix.os == 'ubuntu-22.04'
8181
run: ls -lah dist/* && cp dist/* wheelhouse/
8282

8383
- uses: actions/upload-artifact@v4

.github/workflows/svn-build-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
os: [ ubuntu-22.04, windows-2022, macos-13, macos-14 ]
35+
os: [ ubuntu-22.04, ubuntu-24.04-arm, windows-2022, macos-13, macos-14 ]
3636

3737
steps:
3838
- uses: actions/checkout@v4
@@ -54,7 +54,7 @@ jobs:
5454
# the repository, otherwise the tests will fail
5555
- name: Compile source distribution
5656
run: python3 -m poetry build --format=sdist
57-
if: startsWith(matrix.os, 'ubuntu')
57+
if: matrix.os == 'ubuntu-22.04'
5858

5959
- name: Build wheels
6060
uses: pypa/cibuildwheel@v2.23.3
@@ -72,7 +72,7 @@ jobs:
7272
CIBW_TEST_SKIP: "pp*"
7373

7474
- name: Add source distribution
75-
if: startsWith(matrix.os, 'ubuntu')
75+
if: matrix.os == 'ubuntu-22.04'
7676
run: ls -lah dist/* && cp dist/* wheelhouse/
7777

7878
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)