Skip to content

Commit ccb6967

Browse files
committed
shrink CI
1 parent e7627e3 commit ccb6967

File tree

1 file changed

+73
-73
lines changed

1 file changed

+73
-73
lines changed

.github/workflows/build-and-test.yml

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
host-platform:
27-
- linux-64
28-
- linux-aarch64
27+
# - linux-64
28+
# - linux-aarch64
2929
- win-64
3030
python-version:
31-
- "3.13"
31+
# - "3.13"
3232
- "3.12"
33-
- "3.11"
34-
- "3.10"
35-
- "3.9"
33+
# - "3.11"
34+
# - "3.10"
35+
# - "3.9"
3636
cuda-version:
3737
# Note: this is for build-time only.
3838
- "12.8.0"
@@ -208,56 +208,56 @@ jobs:
208208
run: |
209209
echo "CUDA_VERSION=${{ matrix.cuda-version }}" >> $GITHUB_OUTPUT
210210
211-
test-linux:
212-
strategy:
213-
fail-fast: false
214-
# TODO: add driver version here
215-
matrix:
216-
host-platform:
217-
- linux-64
218-
- linux-aarch64
219-
python-version:
220-
- "3.13"
221-
- "3.12"
222-
- "3.11"
223-
- "3.10"
224-
- "3.9"
225-
cuda-version:
226-
# Note: this is for test-time only.
227-
- "12.8.0"
228-
- "12.0.1"
229-
- "11.8.0"
230-
local-ctk:
231-
- 1 # use mini CTK
232-
- 0 # use CTK wheels
233-
runner:
234-
- default
235-
exclude:
236-
# To test this combo would require nontrivial installation steps.
237-
- cuda-version: "12.0.1"
238-
local-ctk: 0
239-
include:
240-
- host-platform: linux-64
241-
python-version: "3.12"
242-
cuda-version: "12.8.0"
243-
local-ctk: 1
244-
runner: H100
245-
name: Test (${{ matrix.host-platform }}, Python ${{ matrix.python-version }}, CUDA ${{ matrix.cuda-version }}, Runner ${{ matrix.runner }}, ${{ (matrix.local-ctk == '1' && 'local CTK') || 'CTK wheels' }})
246-
if: ${{ github.repository_owner == 'nvidia' }}
247-
permissions:
248-
contents: read # This is required for actions/checkout
249-
needs:
250-
- build
251-
secrets: inherit
252-
uses:
253-
./.github/workflows/test-wheel-linux.yml
254-
with:
255-
host-platform: ${{ matrix.host-platform }}
256-
python-version: ${{ matrix.python-version }}
257-
build-ctk-ver: ${{ needs.build.outputs.BUILD_CTK_VER }}
258-
cuda-version: ${{ matrix.cuda-version }}
259-
local-ctk: ${{ matrix.local-ctk}}
260-
runner: ${{ matrix.runner }}
211+
# test-linux:
212+
# strategy:
213+
# fail-fast: false
214+
# # TODO: add driver version here
215+
# matrix:
216+
# host-platform:
217+
# - linux-64
218+
# - linux-aarch64
219+
# python-version:
220+
# - "3.13"
221+
# - "3.12"
222+
# - "3.11"
223+
# - "3.10"
224+
# - "3.9"
225+
# cuda-version:
226+
# # Note: this is for test-time only.
227+
# - "12.8.0"
228+
# - "12.0.1"
229+
# - "11.8.0"
230+
# local-ctk:
231+
# - 1 # use mini CTK
232+
# - 0 # use CTK wheels
233+
# runner:
234+
# - default
235+
# exclude:
236+
# # To test this combo would require nontrivial installation steps.
237+
# - cuda-version: "12.0.1"
238+
# local-ctk: 0
239+
# include:
240+
# - host-platform: linux-64
241+
# python-version: "3.12"
242+
# cuda-version: "12.8.0"
243+
# local-ctk: 1
244+
# runner: H100
245+
# name: Test (${{ matrix.host-platform }}, Python ${{ matrix.python-version }}, CUDA ${{ matrix.cuda-version }}, Runner ${{ matrix.runner }}, ${{ (matrix.local-ctk == '1' && 'local CTK') || 'CTK wheels' }})
246+
# if: ${{ github.repository_owner == 'nvidia' }}
247+
# permissions:
248+
# contents: read # This is required for actions/checkout
249+
# needs:
250+
# - build
251+
# secrets: inherit
252+
# uses:
253+
# ./.github/workflows/test-wheel-linux.yml
254+
# with:
255+
# host-platform: ${{ matrix.host-platform }}
256+
# python-version: ${{ matrix.python-version }}
257+
# build-ctk-ver: ${{ needs.build.outputs.BUILD_CTK_VER }}
258+
# cuda-version: ${{ matrix.cuda-version }}
259+
# local-ctk: ${{ matrix.local-ctk}}
260+
# runner: ${{ matrix.runner }}
261261

262262
test-windows:
263263
strategy:
@@ -271,10 +271,10 @@ jobs:
271271
cuda-version:
272272
# Note: this is for test-time only.
273273
- "12.8.0"
274-
- "11.8.0"
274+
# - "11.8.0"
275275
local-ctk:
276276
- 1 # use mini CTK
277-
- 0 # use CTK wheels
277+
# - 0 # use CTK wheels
278278
runner:
279279
- default
280280
name: Test (${{ matrix.host-platform }}, Python ${{ matrix.python-version }}, CUDA ${{ matrix.cuda-version }}, Runner ${{ matrix.runner }}, ${{ (matrix.local-ctk == '1' && 'local CTK') || 'CTK wheels' }})
@@ -294,21 +294,21 @@ jobs:
294294
local-ctk: ${{ matrix.local-ctk}}
295295
runner: ${{ matrix.runner }}
296296

297-
doc:
298-
name: Docs
299-
if: ${{ github.repository_owner == 'nvidia' }}
300-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
301-
permissions:
302-
id-token: write
303-
contents: write
304-
pull-requests: write
305-
needs:
306-
- build
307-
secrets: inherit
308-
uses:
309-
./.github/workflows/build-docs.yml
310-
with:
311-
build-ctk-ver: ${{ needs.build.outputs.BUILD_CTK_VER }}
297+
# doc:
298+
# name: Docs
299+
# if: ${{ github.repository_owner == 'nvidia' }}
300+
# # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
301+
# permissions:
302+
# id-token: write
303+
# contents: write
304+
# pull-requests: write
305+
# needs:
306+
# - build
307+
# secrets: inherit
308+
# uses:
309+
# ./.github/workflows/build-docs.yml
310+
# with:
311+
# build-ctk-ver: ${{ needs.build.outputs.BUILD_CTK_VER }}
312312

313313
checks:
314314
name: Check job status

0 commit comments

Comments
 (0)