From 13b46941ca5b73e8883c3d7906c044aac4c23ec7 Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Wed, 28 Jan 2026 13:24:47 -0800 Subject: [PATCH] arch changes --- .github/workflows/pypi-build-artifacts.yml | 6 +++--- .github/workflows/svn-build-artifacts.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pypi-build-artifacts.yml b/.github/workflows/pypi-build-artifacts.yml index dad18c564f..20149a0e1a 100644 --- a/.github/workflows/pypi-build-artifacts.yml +++ b/.github/workflows/pypi-build-artifacts.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/svn-build-artifacts.yml b/.github/workflows/svn-build-artifacts.yml index 24b422cfb8..9d72e1db1c 100644 --- a/.github/workflows/svn-build-artifacts.yml +++ b/.github/workflows/svn-build-artifacts.yml @@ -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 @@ -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 @@ -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