Skip to content

Commit a0ea97d

Browse files
refactor
1 parent e5aa41e commit a0ea97d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/pr.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
- compute-matrix
2020
- build-conda
2121
- test-conda
22+
- test-conda-pynvjitlink
2223
- build-wheels
2324
- test-wheels
25+
- test-wheels-pynvjitlink
2426
- build-docs
2527
secrets: inherit
2628
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
@@ -57,6 +59,16 @@ jobs:
5759
script: "ci/test_conda.sh false"
5860
run_codecov: false
5961
matrix_filter: ${{ needs.compute-matrix.outputs.TEST_MATRIX }}
62+
test-conda-pynvjitlink:
63+
needs:
64+
- build-conda
65+
- compute-matrix
66+
uses: ./.github/workflows/conda-python-tests.yaml
67+
with:
68+
build_type: pull-request
69+
script: "ci/test_conda.sh true"
70+
run_codecov: false
71+
matrix_filter: map(select(.ARCH == "amd64" and .CUDA_VER == "12.5.1" and .PY_VER == "3.12"))
6072
build-wheels:
6173
needs:
6274
- compute-matrix
@@ -72,6 +84,14 @@ jobs:
7284
with:
7385
build_type: pull-request
7486
script: "ci/test_wheel.sh false"
87+
test-wheels-pynvjitlink:
88+
needs:
89+
- build-wheels
90+
uses: ./.github/workflows/wheels-test.yaml
91+
with:
92+
build_type: pull-request
93+
script: "ci/test_wheel.sh true"
94+
matrix_filter: map(select(.ARCH == "amd64" and .CUDA_VER == "12.5.1" and .PY_VER == "3.12"))
7595
build-docs:
7696
needs:
7797
- build-conda

0 commit comments

Comments
 (0)