-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/branch-23.06'
- Loading branch information
Showing
988 changed files
with
24,148 additions
and
12,206 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 |
---|---|---|
|
@@ -26,113 +26,109 @@ jobs: | |
- wheel-build-dask-cudf | ||
- wheel-tests-dask-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/pr-builder.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/pr-builder.yaml@branch-23.06 | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/checks.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/checks.yaml@branch-23.06 | ||
with: | ||
enable_check_generated_files: false | ||
conda-cpp-build: | ||
needs: checks | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
conda-cpp-tests: | ||
needs: conda-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
conda-python-build: | ||
needs: conda-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-build.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-build.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
conda-python-cudf-tests: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
test_script: "ci/test_python_cudf.sh" | ||
conda-python-other-tests: | ||
# Tests for dask_cudf, custreamz, cudf_kafka are separated for CI parallelism | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
test_script: "ci/test_python_other.sh" | ||
conda-java-tests: | ||
needs: conda-cpp-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-latest-1" | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci:latest" | ||
run_script: "ci/test_java.sh" | ||
conda-notebook-tests: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-latest-1" | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci:latest" | ||
run_script: "ci/test_notebooks.sh" | ||
docs-build: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-latest-1" | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci:latest" | ||
run_script: "ci/build_docs.sh" | ||
wheel-build-cudf: | ||
needs: checks | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-build.yml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-build.yml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
package-name: cudf | ||
package-dir: python/cudf | ||
skbuild-configure-options: "-DCUDF_BUILD_WHEELS=ON -DDETECT_CONDA_ENV=OFF" | ||
uses-setup-env-vars: false | ||
wheel-tests-cudf: | ||
needs: wheel-build-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-test.yml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-test.yml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
package-name: cudf | ||
# Install cupy-cuda11x for arm from a special index url | ||
test-before-arm64: "python -m pip install 'cupy-cuda11x<12.0.0' -f https://pip.cupy.dev/aarch64" | ||
test-unittest: "python -m pytest -v -n 8 ./python/cudf/cudf/tests" | ||
test-unittest: "python -m pytest -n 8 ./python/cudf/cudf/tests" | ||
test-smoketest: "python ./ci/wheel_smoke_test_cudf.py" | ||
wheel-build-dask-cudf: | ||
needs: wheel-tests-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-build.yml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-build.yml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
package-name: dask_cudf | ||
package-dir: python/dask_cudf | ||
before-wheel: "RAPIDS_PY_WHEEL_NAME=cudf_cu11 rapids-download-wheels-from-s3 ./local-cudf && python -m pip install --no-deps ./local-cudf/cudf*.whl" | ||
uses-setup-env-vars: false | ||
before-wheel: "RAPIDS_PY_WHEEL_NAME=cudf_${{ '${PIP_CU_VERSION}' }} rapids-download-wheels-from-s3 ./local-cudf && python -m pip install --no-deps ./local-cudf/cudf*.whl" | ||
wheel-tests-dask-cudf: | ||
needs: wheel-build-dask-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-test.yml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-test.yml@branch-23.06 | ||
with: | ||
build_type: pull-request | ||
package-name: dask_cudf | ||
# Install the cudf we just built, and also test against latest dask/distributed/dask-cuda. | ||
test-before: "RAPIDS_PY_WHEEL_NAME=cudf_cu11 rapids-download-wheels-from-s3 ./local-cudf-dep && python -m pip install --no-deps ./local-cudf-dep/cudf*.whl && pip install git+https://github.com/dask/[email protected] git+https://github.com/dask/[email protected] git+https://github.com/rapidsai/dask-cuda.git@branch-23.04" | ||
test-unittest: "python -m pytest -v -n 8 ./python/dask_cudf/dask_cudf/tests" | ||
test-before: "RAPIDS_PY_WHEEL_NAME=cudf_${{ '${PIP_CU_VERSION}' }} rapids-download-wheels-from-s3 ./local-cudf-dep && python -m pip install --no-deps ./local-cudf-dep/cudf*.whl && python -m pip install git+https://github.com/dask/[email protected] git+https://github.com/dask/[email protected] git+https://github.com/rapidsai/dask-cuda.git@branch-23.06" | ||
test-unittest: "python -m pytest -n 8 ./python/dask_cudf/dask_cudf/tests" |
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 |
---|---|---|
|
@@ -16,27 +16,27 @@ on: | |
jobs: | ||
conda-cpp-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
conda-cpp-memcheck-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
node_type: "gpu-latest-1" | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci:latest" | ||
run_script: "ci/test_cpp_memcheck.sh" | ||
conda-python-cudf-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
|
@@ -46,7 +46,7 @@ jobs: | |
conda-python-other-tests: | ||
# Tests for dask_cudf, custreamz, cudf_kafka are separated for CI parallelism | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
|
@@ -55,48 +55,47 @@ jobs: | |
test_script: "ci/test_python_other.sh" | ||
conda-java-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
node_type: "gpu-latest-1" | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci:latest" | ||
run_script: "ci/test_java.sh" | ||
conda-notebook-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
node_type: "gpu-latest-1" | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci:latest" | ||
run_script: "ci/test_notebooks.sh" | ||
wheel-tests-cudf: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-test.yml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-test.yml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
package-name: cudf | ||
test-before-arm64: "python -m pip install 'cupy-cuda11x<12.0.0' -f https://pip.cupy.dev/aarch64" | ||
test-unittest: "python -m pytest -v -n 8 ./python/cudf/cudf/tests" | ||
test-unittest: "python -m pytest -n 8 ./python/cudf/cudf/tests" | ||
wheel-tests-dask-cudf: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-test.yml@branch-23.04 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-test.yml@branch-23.06 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
package-name: dask_cudf | ||
# Test against latest dask/distributed/dask-cuda. | ||
test-before: "pip install git+https://github.com/dask/[email protected] git+https://github.com/dask/[email protected] git+https://github.com/rapidsai/dask-cuda.git@branch-23.04" | ||
test-unittest: "python -m pytest -v -n 8 ./python/dask_cudf/dask_cudf/tests" | ||
test-before: "python -m pip install git+https://github.com/dask/[email protected] git+https://github.com/dask/[email protected] git+https://github.com/rapidsai/dask-cuda.git@branch-23.06" | ||
test-unittest: "python -m pytest -n 8 ./python/dask_cudf/dask_cudf/tests" |
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.