From 21a38d22040604f8ccd5a252e5785a6498de4a7a Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Tue, 23 Sep 2025 09:05:56 -0500 Subject: [PATCH 1/2] add file size recording to span attrs --- .github/workflows/pr.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 188b165222..bf4973204a 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -92,7 +92,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 @@ -117,7 +117,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 @@ -160,7 +160,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 @@ -170,7 +170,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 @@ -192,4 +192,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 From f0c5ca7fcd462d7a30727afdf0d710bbb8449c95 Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Tue, 23 Sep 2025 11:34:40 -0500 Subject: [PATCH 2/2] add branch ref to shared-actions branch --- .github/workflows/pr.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index bf4973204a..8134dc8c17 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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: