Skip to content

Commit 4a93c6b

Browse files
committed
Use the new Ubuntu ARM64 runner
1 parent dce5ce0 commit 4a93c6b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/create.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- os: ubuntu-latest
2525
architecture: 'x64'
2626
cibw_archs: 'x86_64'
27-
- os: kivy-ubuntu-arm64
27+
- os: kivy-ubuntu-22.04-arm64
2828
architecture: 'aarch64'
2929
cibw_archs: aarch64
3030
- os: macos-latest
@@ -61,7 +61,7 @@ jobs:
6161
python -m cibuildwheel --output-dir dist
6262
6363
- name: Install cibuildwheel & build wheels (Linux, macOS Intel)
64-
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'kivy-ubuntu-arm64') || (matrix.os == 'macos-latest')
64+
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'kivy-ubuntu-22.04-arm64') || (matrix.os == 'macos-latest')
6565
env:
6666
CIBW_ARCHS: '${{ matrix.cibw_archs }}'
6767
run: |
@@ -108,13 +108,13 @@ jobs:
108108
continue-on-error: true
109109
strategy:
110110
matrix:
111-
os: ['ubuntu-latest', 'macos-latest', 'windows-latest', 'kivy-ubuntu-arm64']
111+
os: ['ubuntu-latest', 'macos-latest', 'windows-latest', 'kivy-ubuntu-22.04-arm64']
112112
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.7', 'pypy3.8', 'pypy3.9']
113113
include:
114114
# We may would like to introduce tests also on windows-latest on x86 (win32 wheels)?
115115
- os: ubuntu-latest
116116
architecture: 'x64'
117-
- os: kivy-ubuntu-arm64
117+
- os: kivy-ubuntu-22.04-arm64
118118
architecture: 'aarch64'
119119
- os: windows-latest
120120
architecture: 'x64'
@@ -160,7 +160,7 @@ jobs:
160160
brew install ant
161161
162162
- name: Setup ant on Linux
163-
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'kivy-ubuntu-arm64')
163+
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'kivy-ubuntu-22.04-arm64')
164164
run: |
165165
sudo apt-get update && sudo apt-get install -y ant
166166
@@ -176,7 +176,7 @@ jobs:
176176
python -m pip install pyjnius[dev,ci]
177177
178178
- name: Install pyjnius wheel + test prerequisites (Linux)
179-
if: matrix.os == 'ubuntu-latest' || matrix.os == 'kivy-ubuntu-arm64'
179+
if: matrix.os == 'ubuntu-latest' || matrix.os == 'kivy-ubuntu-22.04-arm64'
180180
# --find-links=dist --no-index is needed to avoid downloading the pyjnius wheel
181181
# from the index. We need to test the wheel we just built.
182182
run: |
@@ -186,7 +186,7 @@ jobs:
186186
python -m pip install pyjnius[dev,ci]
187187
188188
- name: Test wheel (Linux, macOS)
189-
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'kivy-ubuntu-arm64') || (matrix.os == 'macos-latest') || (matrix.os == 'apple-silicon-m1')
189+
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'kivy-ubuntu-22.04-arm64') || (matrix.os == 'macos-latest') || (matrix.os == 'apple-silicon-m1')
190190
run: |
191191
source .ci/utils.sh
192192
ensure_python_version ${{ matrix.python }}

0 commit comments

Comments
 (0)