-
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.
update RAFT pin, remove more TODO comments
- Loading branch information
Showing
5 changed files
with
58 additions
and
60 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 |
---|---|---|
|
@@ -13,49 +13,50 @@ jobs: | |
# Please keep pr-builder as the top job here | ||
pr-builder: | ||
needs: | ||
#- check-nightly-ci | ||
- check-nightly-ci | ||
- changed-files | ||
- checks | ||
- conda-cpp-build | ||
- conda-cpp-tests | ||
- conda-cpp-checks | ||
# - conda-notebook-tests | ||
- conda-notebook-tests | ||
- conda-python-build | ||
- conda-python-tests | ||
# - docs-build | ||
- docs-build | ||
- wheel-build-libcugraph | ||
- wheel-build-pylibcugraph | ||
- wheel-tests-pylibcugraph | ||
- wheel-build-cugraph | ||
- wheel-tests-cugraph | ||
# - telemetry-setup | ||
- telemetry-setup | ||
# TODO(jameslamb): restore 'devcontainers' job before merging | ||
# - 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 | ||
# 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 | ||
telemetry-setup: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
env: | ||
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 | ||
|
@@ -129,27 +130,27 @@ jobs: | |
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python | ||
with: | ||
build_type: pull-request | ||
# conda-notebook-tests: | ||
# needs: [conda-python-build, changed-files] | ||
# secrets: inherit | ||
# uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
# if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks | ||
# with: | ||
# build_type: pull-request | ||
# node_type: "gpu-v100-latest-1" | ||
# arch: "amd64" | ||
# container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10" | ||
# run_script: "ci/test_notebooks.sh" | ||
# docs-build: | ||
# needs: conda-python-build | ||
# secrets: inherit | ||
# uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
# with: | ||
# build_type: pull-request | ||
# node_type: "gpu-v100-latest-1" | ||
# arch: "amd64" | ||
# container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10" | ||
# run_script: "ci/build_docs.sh" | ||
conda-notebook-tests: | ||
needs: [conda-python-build, changed-files] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10" | ||
run_script: "ci/test_notebooks.sh" | ||
docs-build: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10" | ||
run_script: "ci/build_docs.sh" | ||
wheel-build-libcugraph: | ||
# needs: checks | ||
secrets: inherit | ||
|
@@ -203,12 +204,12 @@ jobs: | |
# sccache -z; | ||
# build-all --verbose -j$(nproc --ignore=1) -DBUILD_CUGRAPH_MG_TESTS=ON; | ||
# 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 | ||
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 |
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