Skip to content

Commit a92790a

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 a92790a

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/build-wheel.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,12 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
python-version:
31-
- "3.10"
32-
- "3.11"
33-
- "3.12"
34-
- "3.13"
35-
- "3.14"
31+
# TEMPORARY: only building 3.14t to verify LongPathsEnabled
32+
# - "3.10"
33+
# - "3.11"
34+
# - "3.12"
35+
# - "3.13"
36+
# - "3.14"
3637
- "3.14t"
3738
name: py${{ matrix.python-version }}
3839
runs-on: ${{ (inputs.host-platform == 'linux-64' && 'linux-amd64-cpu8') ||

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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)