Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pypi-build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-15-intel, macos-latest ]
os: [ ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-15-intel, macos-latest ]

steps:
- uses: actions/checkout@v6
Expand All @@ -59,7 +59,7 @@ jobs:
# the repository, otherwise the tests will fail
- name: Compile source distribution
run: uv build --sdist
if: startsWith(matrix.os, 'ubuntu')
if: matrix.os == 'ubuntu-latest'

- name: Build wheels
uses: pypa/cibuildwheel@v3.3.1
Expand All @@ -77,7 +77,7 @@ jobs:


- name: Add source distribution
if: startsWith(matrix.os, 'ubuntu')
if: matrix.os == 'ubuntu-latest'
run: ls -lah dist/* && cp dist/* wheelhouse/

- uses: actions/upload-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/svn-build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-15-intel, macos-latest ]
os: [ ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-15-intel, macos-latest ]

steps:
- uses: actions/checkout@v6
Expand All @@ -54,7 +54,7 @@ jobs:
# the repository, otherwise the tests will fail
- name: Compile source distribution
run: uv build --sdist
if: startsWith(matrix.os, 'ubuntu')
if: matrix.os == 'ubuntu-latest'

- name: Build wheels
uses: pypa/cibuildwheel@v3.3.1
Expand All @@ -71,7 +71,7 @@ jobs:
CIBW_SKIP: "cp3*t-*"

- name: Add source distribution
if: startsWith(matrix.os, 'ubuntu')
if: matrix.os == 'ubuntu-latest'
run: ls -lah dist/* && cp dist/* wheelhouse/

- uses: actions/upload-artifact@v4
Expand Down
Loading