From a0ea97d9618cda957cda0afad7f65ffbfcb5eb0f Mon Sep 17 00:00:00 2001 From: brandon-b-miller Date: Thu, 3 Oct 2024 07:51:42 -0700 Subject: [PATCH] refactor --- .github/workflows/pr.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index a8a6d0a..39066be 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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/pr-builder.yaml@branch-24.08 @@ -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 @@ -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