From d24a8e4e6e24e8e7f956b4181d4f76784efb24af Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Thu, 6 Feb 2025 09:15:29 -0600 Subject: [PATCH] add telemetry --- .github/workflows/pr.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index d31409045..b1f4720ad 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -28,16 +28,29 @@ jobs: - wheel-build-cuproj - wheel-tests-cuproj - devcontainer + - telemetry-setup secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@nvks-runners if: always() with: needs: ${{ toJSON(needs) }} + telemetry-setup: + runs-on: ubuntu-latest + continue-on-error: true + env: + OTEL_SERVICE_NAME: "pr-cuspatial" + steps: + - name: Telemetry setup + # This gate is here and not at the job level because we need the job to not be skipped, + # since other jobs depend on it. + if: ${{ vars.TELEMETRY_ENABLED == 'true' }} + uses: rapidsai/shared-actions/telemetry-dispatch-stash-base-env-vars@main check-nightly-ci: # Switch to ubuntu-latest once it defaults to a version of Ubuntu that # provides at least Python 3.11 (see # https://docs.python.org/3/library/datetime.html#datetime.date.fromisoformat) runs-on: ubuntu-24.04 + needs: telemetry-setup env: RAPIDS_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: @@ -47,6 +60,7 @@ jobs: repo: cuspatial changed-files: secrets: inherit + needs: telemetry-setup uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@nvks-runners with: files_yaml: | @@ -77,9 +91,11 @@ jobs: - '!notebooks/**' checks: secrets: inherit + needs: telemetry-setup uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners with: enable_check_generated_files: false + ignored_pr_jobs: telemetry-summarize conda-cpp-build: needs: checks secrets: inherit @@ -184,3 +200,12 @@ jobs: sccache -z; build-all -DBUILD_TESTS=ON -DBUILD_BENCHMARKS=ON --verbose; sccache -s; + telemetry-summarize: + # This job must use a self-hosted runner to record telemetry traces. + runs-on: linux-amd64-cpu4 + needs: pr-builder + if: ${{ vars.TELEMETRY_ENABLED == 'true' && !cancelled() }} + continue-on-error: true + steps: + - name: Telemetry summarize + uses: rapidsai/shared-actions/telemetry-dispatch-summarize@main