24
24
runs-on : ${{ matrix.os }}
25
25
strategy :
26
26
matrix :
27
- os : [ubuntu-22.04, windows-2022, macos-12]
27
+ os : [ubuntu-22.04, windows-2022, macos-12, macos-14 ]
28
28
# Unfortunately the CMake test target is OS dependent so we set it as
29
29
# a variable here.
30
30
include :
34
34
OTIO_TEST_TARGET : RUN_TESTS
35
35
- os : macos-12
36
36
OTIO_TEST_TARGET : test
37
+ - os : macos-14
38
+ OTIO_TEST_TARGET : test
37
39
38
40
env :
39
41
OTIO_BUILD_CONFIG : Release
@@ -92,13 +94,18 @@ jobs:
92
94
runs-on : ${{ matrix.os }}
93
95
strategy :
94
96
matrix :
95
- os : [ubuntu-22.04, windows-2022, macos-12]
97
+ os : [ubuntu-22.04, windows-2022, macos-12, macos-14 ]
96
98
python-version : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
97
99
include :
98
100
- { os: ubuntu-22.04, shell: bash }
99
101
- { os: macos-12, shell: bash }
102
+ - { os: macos-14, shell: bash }
100
103
- { os: windows-2022, shell: pwsh }
101
104
- { os: windows-2022, shell: msys2, python-version: 'mingw64' }
105
+ exclude :
106
+ - { os: macos-14, python-version: 3.7 }
107
+ - { os: macos-14, python-version: 3.8 }
108
+ - { os: macos-14, python-version: 3.9 }
102
109
103
110
defaults :
104
111
run :
@@ -153,7 +160,7 @@ jobs:
153
160
if : matrix.python-version == env.GH_COV_PY && matrix.os == env.GH_COV_OS && github.actor != env.GH_DEPENDABOT
154
161
uses : codecov/codecov-action@v4
155
162
with :
156
- CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
163
+ token : ${{ secrets.CODECOV_TOKEN }}
157
164
flags : py-unittests
158
165
name : py-opentimelineio-codecov
159
166
fail_ci_if_error : true
@@ -163,8 +170,10 @@ jobs:
163
170
runs-on : ${{ matrix.os }}
164
171
strategy :
165
172
matrix :
166
- os : [ubuntu-22.04, windows-2022, macos-12]
173
+ os : [ubuntu-22.04, windows-2022, macos-12, macos-14 ]
167
174
python-build : ['cp37*', 'cp38*', 'cp39*', 'cp310*', 'cp311*', 'cp312*']
175
+ exclude :
176
+ - { os: macos-14, python-build: 'cp37*' }
168
177
steps :
169
178
- uses : actions/checkout@v3
170
179
0 commit comments