Skip to content

Commit b0fb03c

Browse files
committed
Tests fail on GitHub Actions macos-26 image
1 parent 8ca6eba commit b0fb03c

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ name: Android Integration
77
jobs:
88
Integration:
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
os:
1213
- 'ubuntu-latest'
13-
- 'macOs-latest'
14+
- 'macos-latest'
15+
- 'macos-26'
1416
runs-on: ${{ matrix.os }}
1517
steps:
1618
- name: Setup python

.github/workflows/ios.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ jobs:
55
name: "Integration (${{ matrix.runs_on }}, ${{ matrix.python }})"
66
runs-on: ${{ matrix.runs_on }}
77
strategy:
8+
fail-fast: false
89
matrix:
9-
# macos-latest (ATM macos-15) runs on Apple Silicon,
10-
# macos-13 runs on Intel
11-
runs_on: [macos-latest, macos-13]
10+
# macos-15-intel runs on Intel.
11+
# All others run on Apple Silicon (ARM).
12+
runs_on: [macos-latest, macos-15-intel, macos-26]
13+
python: [3.x]
1214
steps:
13-
- name: Setup python
15+
- name: "Setup Python ${{ matrix.python }} on ${{ matrix.runs_on }} (${{ runner.arch }})"
1416
uses: actions/setup-python@v6
1517
with:
16-
python-version: '3.x'
18+
python-version: ${{ matrix.python }}
1719
- uses: actions/checkout@v5
1820
- name: Setup environment
1921
run: |

.github/workflows/test_python.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ jobs:
44
Tests:
55
name: base
66
strategy:
7+
fail-fast: false
78
matrix:
89
python:
910
- '3.8'
@@ -18,12 +19,16 @@ jobs:
1819
- 'macos-latest'
1920
architecture:
2021
- 'x64'
22+
include:
23+
- python: '3.x'
24+
os: 'macos-26'
25+
architecture: 'x64'
2126

2227
runs-on: ${{ matrix.os }}
2328
steps:
2429
- uses: actions/checkout@v5
2530

26-
- name: Setup python
31+
- name: "Setup Python ${{ matrix.python }} on ${{ matrix.os }} (${{ matrix.architecture }} vs. ${{ runner.arch }})"
2732
uses: actions/setup-python@v6
2833
with:
2934
python-version: ${{ matrix.python }}

0 commit comments

Comments
 (0)