-
Notifications
You must be signed in to change notification settings - Fork 933
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 feature/expose-stripe-size-rows-setting
- Loading branch information
Showing
260 changed files
with
5,542 additions
and
6,439 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,8 +41,9 @@ jobs: | |
- pandas-tests | ||
- pandas-tests-diff | ||
- telemetry-setup | ||
- third-party-integration-tests-cudf-pandas | ||
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) }} | ||
|
@@ -70,7 +71,7 @@ jobs: | |
changed-files: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
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: | ||
|
@@ -123,48 +124,49 @@ jobs: | |
checks: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.04 | ||
with: | ||
enable_check_generated_files: false | ||
ignored_pr_jobs: "telemetry-summarize spark-rapids-jni" | ||
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 | ||
node_type: "cpu16" | ||
cpp-linters: | ||
secrets: inherit | ||
needs: checks | ||
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 | ||
run_script: "ci/cpp_linters.sh" | ||
node_type: "cpu16" | ||
conda-cpp-checks: | ||
needs: conda-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.04 | ||
with: | ||
build_type: pull-request | ||
enable_check_symbols: true | ||
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-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-cudf-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 | ||
|
@@ -173,15 +175,15 @@ jobs: | |
# Tests for dask_cudf, custreamz, cudf_kafka are separated for CI parallelism | ||
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 | ||
script: "ci/test_python_other.sh" | ||
conda-java-tests: | ||
needs: [conda-cpp-build, changed-files] | ||
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 | ||
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_java | ||
with: | ||
build_type: pull-request | ||
|
@@ -192,7 +194,7 @@ jobs: | |
static-configure: | ||
needs: checks | ||
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 | ||
# Use the wheel container so we can skip conda solves and since our | ||
|
@@ -202,7 +204,7 @@ jobs: | |
conda-notebook-tests: | ||
needs: [conda-python-build, changed-files] | ||
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 | ||
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks | ||
with: | ||
build_type: pull-request | ||
|
@@ -213,7 +215,7 @@ jobs: | |
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" | ||
|
@@ -223,7 +225,7 @@ jobs: | |
wheel-build-libcudf: | ||
needs: checks | ||
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 for every combination of arch and CUDA version, but only for the latest Python | ||
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber))) | ||
|
@@ -233,29 +235,29 @@ jobs: | |
wheel-build-pylibcudf: | ||
needs: [checks, wheel-build-libcudf] | ||
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_pylibcudf.sh" | ||
wheel-build-cudf: | ||
needs: wheel-build-pylibcudf | ||
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_cudf.sh" | ||
wheel-tests-cudf: | ||
needs: [wheel-build-cudf, 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_cudf.sh | ||
wheel-build-cudf-polars: | ||
needs: wheel-build-pylibcudf | ||
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: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
|
@@ -264,7 +266,7 @@ jobs: | |
wheel-tests-cudf-polars: | ||
needs: [wheel-build-cudf-polars, 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: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
|
@@ -274,7 +276,7 @@ jobs: | |
cudf-polars-polars-tests: | ||
needs: wheel-build-cudf-polars | ||
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 | ||
with: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
|
@@ -283,7 +285,7 @@ jobs: | |
wheel-build-dask-cudf: | ||
needs: wheel-build-cudf | ||
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: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
|
@@ -292,7 +294,7 @@ jobs: | |
wheel-tests-dask-cudf: | ||
needs: [wheel-build-dask-cudf, 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: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
|
@@ -302,7 +304,7 @@ jobs: | |
devcontainer: | ||
secrets: inherit | ||
needs: telemetry-setup | ||
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: | ||
node_type: "cpu32" | ||
arch: '["amd64"]' | ||
|
@@ -314,18 +316,32 @@ jobs: | |
unit-tests-cudf-pandas: | ||
needs: [wheel-build-cudf, 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 || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cudf_pandas | ||
with: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
build_type: pull-request | ||
script: ci/cudf_pandas_scripts/run_tests.sh | ||
third-party-integration-tests-cudf-pandas: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: pull-request | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
node_type: "gpu-l4-latest-1" | ||
continue-on-error: true | ||
container_image: "rapidsai/ci-conda:latest" | ||
run_script: | | ||
ci/cudf_pandas_scripts/third-party-integration/test.sh python/cudf/cudf_pandas_tests/third_party_integration_tests/dependencies.yaml | ||
pandas-tests: | ||
# run the Pandas unit tests using PR branch | ||
needs: [wheel-build-cudf, 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 || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cudf_pandas | ||
with: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
|
@@ -337,7 +353,7 @@ jobs: | |
pandas-tests-diff: | ||
# diff the results of running the Pandas unit tests and publish a job summary | ||
needs: pandas-tests | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04 | ||
with: | ||
node_type: "cpu4" | ||
build_type: pull-request | ||
|
Oops, something went wrong.