Skip to content

Commit 14a496b

Browse files
committed
TEMPORARY: restrict CI to Windows 3.14t jobs only
Disable Linux builds/tests and docs, filter Windows test matrix to py3.14t to verify LongPathsEnabled fix in isolation. Revert before merge. Made-with: Cursor
1 parent b3c14dc commit 14a496b

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
host-platform:
8888
- linux-64
8989
name: Build ${{ matrix.host-platform }}, CUDA ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }}
90-
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.skip) }}
90+
if: github.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
9191
secrets: inherit
9292
uses: ./.github/workflows/build-wheel.yml
9393
with:
@@ -106,7 +106,7 @@ jobs:
106106
host-platform:
107107
- linux-aarch64
108108
name: Build ${{ matrix.host-platform }}, CUDA ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }}
109-
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.skip) && !fromJSON(needs.should-skip.outputs.doc-only) }}
109+
if: github.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
110110
secrets: inherit
111111
uses: ./.github/workflows/build-wheel.yml
112112
with:
@@ -145,7 +145,7 @@ jobs:
145145
host-platform:
146146
- linux-64
147147
name: Test ${{ matrix.host-platform }}
148-
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.doc-only) }}
148+
if: github.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
149149
permissions:
150150
contents: read # This is required for actions/checkout
151151
needs:
@@ -168,7 +168,7 @@ jobs:
168168
host-platform:
169169
- linux-aarch64
170170
name: Test ${{ matrix.host-platform }}
171-
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.doc-only) }}
171+
if: github.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
172172
permissions:
173173
contents: read # This is required for actions/checkout
174174
needs:
@@ -204,11 +204,12 @@ jobs:
204204
build-type: pull-request
205205
host-platform: ${{ matrix.host-platform }}
206206
build-ctk-ver: ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }}
207+
matrix_filter: 'map(select(.PY_VER == "3.14t"))' # TEMPORARY: only testing Windows 3.14t
207208
nruns: ${{ (github.event_name == 'schedule' && 100) || 1}}
208209

209210
doc:
210211
name: Docs
211-
if: ${{ github.repository_owner == 'nvidia' }}
212+
if: github.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
212213
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
213214
permissions:
214215
id-token: write

0 commit comments

Comments
 (0)