Skip to content
Draft
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
14 changes: 9 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
SHARED_ACTIONS_REPO: rapidsai/shared-actions
SHARED_ACTIONS_REF: add-file-size-recording

jobs:
pr-builder:
needs:
Expand Down Expand Up @@ -92,7 +96,7 @@ jobs:
conda-cpp-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.12
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@add-file-size-recording
with:
build_type: pull-request
script: ci/build_cpp.sh
Expand All @@ -117,7 +121,7 @@ jobs:
conda-python-build:
needs: conda-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.12
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@add-file-size-recording
with:
build_type: pull-request
script: ci/build_python.sh
Expand Down Expand Up @@ -160,7 +164,7 @@ jobs:
sccache --show-adv-stats | tee telemetry-artifacts/sccache-stats.txt;
wheel-cpp-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@add-file-size-recording
with:
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
build_type: pull-request
Expand All @@ -170,7 +174,7 @@ jobs:
wheel-python-build:
needs: wheel-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@add-file-size-recording
with:
build_type: pull-request
script: ci/build_wheel_python.sh
Expand All @@ -192,4 +196,4 @@ jobs:
continue-on-error: true
steps:
- name: Telemetry summarize
uses: rapidsai/shared-actions/telemetry-dispatch-summarize@main
uses: rapidsai/shared-actions/telemetry-dispatch-summarize@add-file-size-recording
Loading