-
Notifications
You must be signed in to change notification settings - Fork 65
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.04' into use_rapids-generate-version_again
- Loading branch information
Showing
22 changed files
with
111 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,9 @@ jobs: | |
- wheel-cpp-build | ||
- wheel-python-build | ||
- wheel-python-tests | ||
- telemetry-setup | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.04 | ||
if: always() | ||
with: | ||
needs: ${{ toJSON(needs) }} | ||
|
@@ -35,6 +36,7 @@ jobs: | |
# 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: | ||
|
@@ -44,7 +46,7 @@ jobs: | |
repo: kvikio | ||
changed-files: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.04 | ||
with: | ||
files_yaml: | | ||
test_cpp: | ||
|
@@ -70,26 +72,40 @@ jobs: | |
- '!README.md' | ||
- '!docs/**' | ||
- '!notebooks/**' | ||
telemetry-setup: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
env: | ||
OTEL_SERVICE_NAME: "pr-kvikio" | ||
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 | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners | ||
needs: telemetry-setup | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
ignored_pr_jobs: telemetry-summarize | ||
conda-cpp-build: | ||
needs: checks | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.04 | ||
with: | ||
build_type: pull-request | ||
conda-cpp-tests: | ||
needs: [conda-cpp-build, changed-files] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04 | ||
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp | ||
with: | ||
build_type: pull-request | ||
conda-java-tests: | ||
needs: conda-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-l4-latest-1" | ||
|
@@ -99,29 +115,30 @@ jobs: | |
conda-python-build: | ||
needs: conda-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04 | ||
with: | ||
build_type: pull-request | ||
conda-python-tests: | ||
needs: [conda-python-build, changed-files] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04 | ||
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python | ||
with: | ||
build_type: pull-request | ||
docs-build: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-l4-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci-conda:latest" | ||
run_script: "ci/build_docs.sh" | ||
devcontainer: | ||
needs: telemetry-setup | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.04 | ||
with: | ||
arch: '["amd64"]' | ||
cuda: '["12.8"]' | ||
|
@@ -132,23 +149,32 @@ jobs: | |
sccache -s; | ||
wheel-cpp-build: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04 | ||
with: | ||
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber))) | ||
build_type: pull-request | ||
script: ci/build_wheel_cpp.sh | ||
wheel-python-build: | ||
needs: wheel-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04 | ||
with: | ||
build_type: pull-request | ||
script: ci/build_wheel_python.sh | ||
wheel-python-tests: | ||
needs: [wheel-python-build, changed-files] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04 | ||
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python | ||
with: | ||
build_type: pull-request | ||
script: ci/test_wheel.sh | ||
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
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.