-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check if nightlies have passed in the last 7 days
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ concurrency: | |
jobs: | ||
pr-builder: | ||
needs: | ||
- check-nightly-ci | ||
- changed-files | ||
- devcontainer | ||
- checks | ||
|
@@ -32,6 +33,18 @@ jobs: | |
if: always() | ||
with: | ||
needs: ${{ toJSON(needs) }} | ||
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-gnn | ||
changed-files: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
|