Skip to content

Commit 14f945e

Browse files
committed
Update with macos-latest-large
1 parent 8a8edde commit 14f945e

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/main.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ jobs:
114114
os: [ubuntu-latest]
115115
python-version: [3.9, '3.10', 3.11, 3.12]
116116
include:
117+
# macos-latest is an Arm64 image
117118
- os: macos-latest
118119
python-version: 3.9
119120
- os: macos-latest
@@ -122,6 +123,11 @@ jobs:
122123
python-version: 3.9
123124
- os: windows-latest
124125
python-version: 3.12
126+
# macos-latest-large is an X86 image
127+
- os: macos-latest-large
128+
python-version: 3.9
129+
- os: macos-latest-large
130+
python-version: 3.12
125131
steps:
126132
- uses: actions/checkout@v4
127133
- uses: actions/setup-python@v5
@@ -297,12 +303,20 @@ jobs:
297303
with:
298304
name: windows-latest-3.12
299305
path: /tmp/w312
306+
- uses: actions/download-artifact@v4
307+
with:
308+
name: macos-latest-large-3.9
309+
path: /tmp/x39
310+
- uses: actions/download-artifact@v4
311+
with:
312+
name: macos-latest-large-3.12
313+
path: /tmp/x312
300314
- name: Install Dependencies
301315
run: pip install -U coverage coveralls diff-cover
302316
shell: bash
303317
- name: Combined Deprecation Messages
304318
run: |
305-
sort -f -u /tmp/u39/ml.dep /tmp/u310/ml.dep /tmp/u311/ml.dep /tmp/u312/ml.dep /tmp/m39/ml.dep /tmp/m312/ml.dep /tmp/w39/ml.dep /tmp/w312/ml.dep || true
319+
sort -f -u /tmp/u39/ml.dep /tmp/u310/ml.dep /tmp/u311/ml.dep /tmp/u312/ml.dep /tmp/m39/ml.dep /tmp/m312/ml.dep /tmp/w39/ml.dep /tmp/w312/ml.dep /tmp/x39/ml.dep /tmp/x312/ml.dep || true
306320
shell: bash
307321
- name: Coverage combine
308322
run: coverage3 combine /tmp/u39/ml.dat

0 commit comments

Comments
 (0)