File tree 1 file changed +15
-1
lines changed
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ jobs:
114
114
os : [ubuntu-latest]
115
115
python-version : [3.9, '3.10', 3.11, 3.12]
116
116
include :
117
+ # macos-latest is an Arm64 image
117
118
- os : macos-latest
118
119
python-version : 3.9
119
120
- os : macos-latest
@@ -122,6 +123,11 @@ jobs:
122
123
python-version : 3.9
123
124
- os : windows-latest
124
125
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
125
131
steps :
126
132
- uses : actions/checkout@v4
127
133
- uses : actions/setup-python@v5
@@ -297,12 +303,20 @@ jobs:
297
303
with :
298
304
name : windows-latest-3.12
299
305
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
300
314
- name : Install Dependencies
301
315
run : pip install -U coverage coveralls diff-cover
302
316
shell : bash
303
317
- name : Combined Deprecation Messages
304
318
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
306
320
shell : bash
307
321
- name : Coverage combine
308
322
run : coverage3 combine /tmp/u39/ml.dat
You can’t perform that action at this time.
0 commit comments