-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'branch-25.02' into branch-24.12-remove-deprecation-warn…
…ings
- Loading branch information
Showing
240 changed files
with
3,961 additions
and
6,236 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ jobs: | |
# Please keep pr-builder as the top job here | ||
pr-builder: | ||
needs: | ||
- check-nightly-ci | ||
- changed-files | ||
- checks | ||
- conda-cpp-build | ||
|
@@ -40,7 +41,20 @@ jobs: | |
OTEL_SERVICE_NAME: "pr-cugraph" | ||
steps: | ||
- name: Telemetry setup | ||
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 | ||
env: | ||
RAPIDS_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Check if nightly CI is passing | ||
uses: rapidsai/shared-actions/check_nightly_success/dispatch@main | ||
with: | ||
repo: cugraph | ||
changed-files: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
|
@@ -49,7 +63,7 @@ jobs: | |
files_yaml: | | ||
test_cpp: | ||
- '**' | ||
- '!.devcontainers/**' | ||
- '!.devcontainer/**' | ||
- '!CONTRIBUTING.md' | ||
- '!README.md' | ||
- '!docs/**' | ||
|
@@ -60,13 +74,13 @@ jobs: | |
- '!readme_pages/**' | ||
test_notebooks: | ||
- '**' | ||
- '!.devcontainers/**' | ||
- '!.devcontainer/**' | ||
- '!CONTRIBUTING.md' | ||
- '!README.md' | ||
- '!docs/**' | ||
test_python: | ||
- '**' | ||
- '!.devcontainers/**' | ||
- '!.devcontainer/**' | ||
- '!CONTRIBUTING.md' | ||
- '!README.md' | ||
- '!docs/**' | ||
|
@@ -142,9 +156,6 @@ jobs: | |
with: | ||
build_type: pull-request | ||
script: ci/build_wheel_pylibcugraph.sh | ||
extra-repo: rapidsai/cugraph-ops | ||
extra-repo-sha: branch-25.02 | ||
extra-repo-deploy-key: CUGRAPH_OPS_SSH_PRIVATE_DEPLOY_KEY | ||
node_type: cpu32 | ||
wheel-tests-pylibcugraph: | ||
needs: [wheel-build-pylibcugraph, changed-files] | ||
|
@@ -155,15 +166,12 @@ jobs: | |
build_type: pull-request | ||
script: ci/test_wheel_pylibcugraph.sh | ||
wheel-build-cugraph: | ||
needs: wheel-tests-pylibcugraph | ||
needs: wheel-build-pylibcugraph | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: pull-request | ||
script: ci/build_wheel_cugraph.sh | ||
extra-repo: rapidsai/cugraph-ops | ||
extra-repo-sha: branch-25.02 | ||
extra-repo-deploy-key: CUGRAPH_OPS_SSH_PRIVATE_DEPLOY_KEY | ||
wheel-tests-cugraph: | ||
needs: [wheel-build-cugraph, changed-files] | ||
secrets: inherit | ||
|
@@ -180,22 +188,16 @@ jobs: | |
arch: '["amd64"]' | ||
cuda: '["12.5"]' | ||
node_type: cpu32 | ||
extra-repo-deploy-key: CUGRAPH_OPS_SSH_PRIVATE_DEPLOY_KEY | ||
build_command: | | ||
sccache -z; | ||
build-all --verbose -j$(nproc --ignore=1) -DBUILD_CUGRAPH_MG_TESTS=ON; | ||
sccache -s; | ||
telemetry-summarize: | ||
runs-on: ubuntu-latest | ||
# This job must use a self-hosted runner to record telemetry traces. | ||
runs-on: linux-amd64-cpu4 | ||
needs: pr-builder | ||
if: always() | ||
if: ${{ vars.TELEMETRY_ENABLED == 'true' && !cancelled() }} | ||
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 }}" | ||
uses: rapidsai/shared-actions/telemetry-dispatch-summarize@main |
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
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
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.