Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed Oct 3, 2024
1 parent e5aa41e commit a0ea97d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:
- compute-matrix
- build-conda
- test-conda
- test-conda-pynvjitlink
- build-wheels
- test-wheels
- test-wheels-pynvjitlink
- build-docs
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
Expand Down Expand Up @@ -57,6 +59,16 @@ jobs:
script: "ci/test_conda.sh false"
run_codecov: false
matrix_filter: ${{ needs.compute-matrix.outputs.TEST_MATRIX }}
test-conda-pynvjitlink:
needs:
- build-conda
- compute-matrix
uses: ./.github/workflows/conda-python-tests.yaml
with:
build_type: pull-request
script: "ci/test_conda.sh true"
run_codecov: false
matrix_filter: map(select(.ARCH == "amd64" and .CUDA_VER == "12.5.1" and .PY_VER == "3.12"))
build-wheels:
needs:
- compute-matrix
Expand All @@ -72,6 +84,14 @@ jobs:
with:
build_type: pull-request
script: "ci/test_wheel.sh false"
test-wheels-pynvjitlink:
needs:
- build-wheels
uses: ./.github/workflows/wheels-test.yaml
with:
build_type: pull-request
script: "ci/test_wheel.sh true"
matrix_filter: map(select(.ARCH == "amd64" and .CUDA_VER == "12.5.1" and .PY_VER == "3.12"))
build-docs:
needs:
- build-conda
Expand Down

0 comments on commit a0ea97d

Please sign in to comment.