File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed
Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,12 @@ name: Android Integration
77jobs :
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
Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments