Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
- wheel-test
- devcontainer
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@add-rtxpro6000
if: always()
with:
needs: ${{ toJSON(needs) }}
changed-files:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@add-rtxpro6000
with:
files_yaml: |
build_docs:
Expand Down Expand Up @@ -128,11 +128,11 @@ jobs:
- '!docs/**''
checks:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@add-rtxpro6000
wheel-build-librapidsmpf:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@add-rtxpro6000
with:
build_type: pull-request
node_type: cpu8
Expand All @@ -145,7 +145,7 @@ jobs:
wheel-build-rapidsmpf:
needs: [checks, wheel-build-librapidsmpf]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@add-rtxpro6000
with:
build_type: pull-request
node_type: cpu8
Expand All @@ -156,7 +156,7 @@ jobs:
wheel-build-rapidsmpf-singlecomm:
needs: [checks, wheel-build-librapidsmpf]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@add-rtxpro6000
with:
build_type: pull-request
node_type: cpu8
Expand All @@ -168,7 +168,7 @@ jobs:
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels
needs: [changed-files, wheel-build-rapidsmpf]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@add-rtxpro6000
with:
build_type: pull-request
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
Expand All @@ -177,7 +177,7 @@ jobs:
conda-cpp-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@add-rtxpro6000
with:
build_type: pull-request
node_type: cpu8
Expand All @@ -186,7 +186,7 @@ jobs:
conda-cpp-linters:
secrets: inherit
needs: checks
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@add-rtxpro6000
with:
build_type: pull-request
script: "ci/cpp_linters.sh"
Expand All @@ -196,7 +196,7 @@ jobs:
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
needs: [changed-files, conda-cpp-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@add-rtxpro6000
with:
build_type: pull-request
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
Expand All @@ -205,23 +205,23 @@ jobs:
conda-cpp-memcheck:
secrets: inherit
needs: conda-cpp-build
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@add-rtxpro6000
with:
build_type: pull-request
script: "ci/test_cpp_memcheck.sh"
node_type: "gpu-l4-latest-1"
conda-python-build:
needs: conda-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@add-rtxpro6000
with:
build_type: pull-request
script: ci/build_python.sh
conda-python-tests:
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_conda
needs: [changed-files, conda-python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@add-rtxpro6000
with:
build_type: pull-request
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
Expand All @@ -231,7 +231,7 @@ jobs:
docs-build:
needs: [conda-python-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@add-rtxpro6000
if: fromJSON(needs.changed-files.outputs.changed_file_groups).build_docs
with:
build_type: pull-request
Expand All @@ -241,7 +241,7 @@ jobs:
script: "ci/build_docs.sh"
devcontainer:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@add-rtxpro6000
with:
arch: '["amd64", "arm64"]'
cuda: '["13.1"]'
Expand Down