24
24
- os : ubuntu-latest
25
25
architecture : ' x64'
26
26
cibw_archs : ' x86_64'
27
- - os : kivy-ubuntu-arm64
27
+ - os : kivy-ubuntu-22.04- arm64
28
28
architecture : ' aarch64'
29
29
cibw_archs : aarch64
30
30
- os : macos-latest
61
61
python -m cibuildwheel --output-dir dist
62
62
63
63
- 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')
65
65
env :
66
66
CIBW_ARCHS : ' ${{ matrix.cibw_archs }}'
67
67
run : |
@@ -108,13 +108,13 @@ jobs:
108
108
continue-on-error : true
109
109
strategy :
110
110
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']
112
112
python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.7', 'pypy3.8', 'pypy3.9']
113
113
include :
114
114
# We may would like to introduce tests also on windows-latest on x86 (win32 wheels)?
115
115
- os : ubuntu-latest
116
116
architecture : ' x64'
117
- - os : kivy-ubuntu-arm64
117
+ - os : kivy-ubuntu-22.04- arm64
118
118
architecture : ' aarch64'
119
119
- os : windows-latest
120
120
architecture : ' x64'
@@ -160,7 +160,7 @@ jobs:
160
160
brew install ant
161
161
162
162
- 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')
164
164
run : |
165
165
sudo apt-get update && sudo apt-get install -y ant
166
166
@@ -176,7 +176,7 @@ jobs:
176
176
python -m pip install pyjnius[dev,ci]
177
177
178
178
- 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'
180
180
# --find-links=dist --no-index is needed to avoid downloading the pyjnius wheel
181
181
# from the index. We need to test the wheel we just built.
182
182
run : |
@@ -186,7 +186,7 @@ jobs:
186
186
python -m pip install pyjnius[dev,ci]
187
187
188
188
- 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')
190
190
run : |
191
191
source .ci/utils.sh
192
192
ensure_python_version ${{ matrix.python }}
0 commit comments