Skip to content

Commit aae5413

Browse files
committed
Fixed illegal env variable in runs-on
Signed-off-by: Eric Reinecke <[email protected]>
1 parent d5f527e commit aae5413

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ jobs:
8989
cmake ${{ github.workspace }}/tests/consumer -DCMAKE_PREFIX_PATH=${{ env.OTIO_INSTALL_DIR }}
9090
9191
py_smoketest_build:
92-
runs-on: ${{ env.GH_COV_OS }}
92+
# Ideally this would be ${{ env.GH_COV_OS }} - but github doens't allow it
93+
runs-on: ubuntu-latest
9394
strategy:
9495
matrix:
9596
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
@@ -99,7 +100,7 @@ jobs:
99100
shell: "bash {0}"
100101

101102
env:
102-
OTIO_CXX_COVERAGE_BUILD: ON
103+
OTIO_CXX_COVERAGE_BUILD: 'ON'
103104
OTIO_CXX_BUILD_TMP_DIR: ${{ github.workspace }}/build
104105

105106
steps:
@@ -155,6 +156,8 @@ jobs:
155156
python-build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
156157
steps:
157158
- uses: actions/checkout@v4
159+
with:
160+
submodules: "recursive"
158161

159162
- name: Build wheels (Python 3)
160163
uses: pypa/[email protected]
@@ -194,13 +197,11 @@ jobs:
194197
shell: "${{ matrix.shell }} {0}"
195198

196199
env:
197-
OTIO_CXX_COVERAGE_BUILD: ON
200+
OTIO_CXX_COVERAGE_BUILD: 'ON'
198201
OTIO_CXX_BUILD_TMP_DIR: ${{ github.workspace }}/build
199202

200203
steps:
201204
- uses: actions/checkout@v4
202-
with:
203-
submodules: "recursive"
204205
- name: Set up MSYS2
205206
if: matrix.python-version == 'mingw64'
206207
uses: msys2/setup-msys2@v2

0 commit comments

Comments
 (0)