-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4785 from bdice/branch-25.02-merge-24.12
Forward-merge branch-24.12 to branch-25.02
- Loading branch information
Showing
77 changed files
with
11,660 additions
and
4,170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
# Please keep pr-builder as the top job here | ||
pr-builder: | ||
needs: | ||
- changed-files | ||
|
@@ -25,14 +26,24 @@ jobs: | |
- wheel-tests-pylibcugraph | ||
- wheel-build-cugraph | ||
- wheel-tests-cugraph | ||
- telemetry-setup | ||
- devcontainer | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
if: always() | ||
with: | ||
needs: ${{ toJSON(needs) }} | ||
telemetry-setup: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
env: | ||
OTEL_SERVICE_NAME: "pr-cugraph" | ||
steps: | ||
- name: Telemetry setup | ||
uses: rapidsai/shared-actions/telemetry-dispatch-stash-base-env-vars@main | ||
changed-files: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
files_yaml: | | ||
|
@@ -63,9 +74,11 @@ jobs: | |
- '!notebooks/**' | ||
checks: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
enable_check_generated_files: false | ||
ignored_pr_jobs: telemetry-summarize | ||
conda-cpp-build: | ||
needs: checks | ||
secrets: inherit | ||
|
@@ -161,6 +174,7 @@ jobs: | |
script: ci/test_wheel_cugraph.sh | ||
devcontainer: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
arch: '["amd64"]' | ||
|
@@ -171,3 +185,17 @@ jobs: | |
sccache -z; | ||
build-all --verbose -j$(nproc --ignore=1) -DBUILD_CUGRAPH_MG_TESTS=ON; | ||
sccache -s; | ||
telemetry-summarize: | ||
runs-on: ubuntu-latest | ||
needs: pr-builder | ||
if: always() | ||
continue-on-error: true | ||
steps: | ||
- name: Load stashed telemetry env vars | ||
uses: rapidsai/shared-actions/telemetry-dispatch-load-base-env-vars@main | ||
with: | ||
load_service_name: true | ||
- name: Telemetry summarize | ||
uses: rapidsai/shared-actions/telemetry-dispatch-write-summary@main | ||
with: | ||
cert_concat: "${{ secrets.OTEL_EXPORTER_OTLP_CA_CERTIFICATE }};${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE }};${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_KEY }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.