Skip to content

Commit 78af2e7

Browse files
committed
Revert "TEMPORARY: restrict CI to Windows 3.14t jobs only"
This reverts commit a92790a.
1 parent a92790a commit 78af2e7

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/build-wheel.yml

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

.github/workflows/ci.yml

Lines changed: 4 additions & 5 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.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
109+
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.skip) && !fromJSON(needs.should-skip.outputs.doc-only) }}
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.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
148+
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.doc-only) }}
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.event_name == 'TEMPORARY_DISABLED' # TEMPORARY: only testing Windows 3.14t
171+
if: ${{ github.repository_owner == 'nvidia' && !fromJSON(needs.should-skip.outputs.doc-only) }}
172172
permissions:
173173
contents: read # This is required for actions/checkout
174174
needs:
@@ -204,12 +204,11 @@ 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
208207
nruns: ${{ (github.event_name == 'schedule' && 100) || 1}}
209208

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

0 commit comments

Comments
 (0)