-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,080 changed files
with
46,293 additions
and
20,963 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Configuration file for `copy-pr-bot` GitHub App | ||
# https://docs.gha-runners.nvidia.com/apps/copy-pr-bot/ | ||
|
||
enabled: true |
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ concurrency: | |
jobs: | ||
cpp-build: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.10 | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
|
@@ -37,7 +37,7 @@ jobs: | |
python-build: | ||
needs: [cpp-build] | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-build.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-build.yaml@branch-23.10 | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
|
@@ -46,39 +46,40 @@ jobs: | |
upload-conda: | ||
needs: [cpp-build, python-build] | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-upload-packages.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-upload-packages.yaml@branch-23.10 | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
skip_upload_pkgs: libcudf-example | ||
docs-build: | ||
if: github.ref_type == 'branch' && github.event_name == 'push' | ||
if: github.ref_type == 'branch' | ||
needs: python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: branch | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
branch: ${{ inputs.branch }} | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
container_image: "rapidsai/ci:latest" | ||
date: ${{ inputs.date }} | ||
node_type: "gpu-v100-latest-1" | ||
run_script: "ci/build_docs.sh" | ||
sha: ${{ inputs.sha }} | ||
wheel-build-cudf: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-build.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-build.[email protected] | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
sha: ${{ inputs.sha }} | ||
date: ${{ inputs.date }} | ||
package-name: cudf | ||
package-dir: python/cudf | ||
skbuild-configure-options: "-DCUDF_BUILD_WHEELS=ON -DDETECT_CONDA_ENV=OFF" | ||
script: ci/build_wheel_cudf.sh | ||
wheel-publish-cudf: | ||
needs: wheel-build-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-publish.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-publish.[email protected] | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
|
@@ -88,18 +89,18 @@ jobs: | |
wheel-build-dask-cudf: | ||
needs: wheel-publish-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-build.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-build.[email protected] | ||
with: | ||
matrix_filter: map(select(.ARCH == "amd64" and .PY_VER == "3.10" and (.CUDA_VER == "11.8.0" or .CUDA_VER == "12.0.1"))) | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
sha: ${{ inputs.sha }} | ||
date: ${{ inputs.date }} | ||
package-name: dask_cudf | ||
package-dir: python/dask_cudf | ||
script: ci/build_wheel_dask_cudf.sh | ||
wheel-publish-dask-cudf: | ||
needs: wheel-build-dask-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-publish.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-publish.[email protected] | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
|
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,49 +26,49 @@ jobs: | |
- wheel-build-dask-cudf | ||
- wheel-tests-dask-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/pr-builder.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/pr-builder.yaml@branch-23.10 | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/checks.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/checks.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-build.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-v100-latest-1" | ||
|
@@ -78,7 +78,7 @@ jobs: | |
conda-notebook-tests: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-v100-latest-1" | ||
|
@@ -88,7 +88,7 @@ jobs: | |
docs-build: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-v100-latest-1" | ||
|
@@ -98,37 +98,30 @@ jobs: | |
wheel-build-cudf: | ||
needs: checks | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-build.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-build.[email protected] | ||
with: | ||
build_type: pull-request | ||
package-name: cudf | ||
package-dir: python/cudf | ||
skbuild-configure-options: "-DCUDF_BUILD_WHEELS=ON -DDETECT_CONDA_ENV=OFF" | ||
script: "ci/build_wheel_cudf.sh" | ||
wheel-tests-cudf: | ||
needs: wheel-build-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-test.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-test.[email protected] | ||
with: | ||
build_type: pull-request | ||
package-name: cudf | ||
test-unittest: "python -m pytest -n 8 ./python/cudf/cudf/tests" | ||
test-smoketest: "python ./ci/wheel_smoke_test_cudf.py" | ||
script: ci/test_wheel_cudf.sh | ||
wheel-build-dask-cudf: | ||
needs: wheel-tests-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-build.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-build.[email protected] | ||
with: | ||
matrix_filter: map(select(.ARCH == "amd64" and .PY_VER == "3.10" and (.CUDA_VER == "11.8.0" or .CUDA_VER == "12.0.1"))) | ||
build_type: pull-request | ||
package-name: dask_cudf | ||
package-dir: python/dask_cudf | ||
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" | ||
script: "ci/build_wheel_dask_cudf.sh" | ||
wheel-tests-dask-cudf: | ||
needs: wheel-build-dask-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-test.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-test.[email protected] | ||
with: | ||
matrix_filter: map(select(.ARCH == "amd64" and .PY_VER == "3.10" and (.CUDA_VER == "11.8.0" or .CUDA_VER == "12.0.1"))) | ||
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_${{ '${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/[email protected]" | ||
test-unittest: "python -m pytest -n 8 ./python/dask_cudf/dask_cudf/tests" | ||
script: ci/test_wheel_dask_cudf.sh |
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,15 +16,15 @@ on: | |
jobs: | ||
conda-cpp-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
|
@@ -36,7 +36,7 @@ jobs: | |
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.10 | ||
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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@branch-23.10 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
|
@@ -55,7 +55,7 @@ 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.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
|
@@ -67,7 +67,7 @@ jobs: | |
run_script: "ci/test_java.sh" | ||
conda-notebook-tests: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.06 | ||
uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.10 | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
|
@@ -79,23 +79,20 @@ jobs: | |
run_script: "ci/test_notebooks.sh" | ||
wheel-tests-cudf: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-manylinux-test.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-test.[email protected] | ||
with: | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
package-name: cudf | ||
test-unittest: "python -m pytest -n 8 ./python/cudf/cudf/tests" | ||
script: ci/test_wheel_cudf.sh | ||
wheel-tests-dask-cudf: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-pure-test.yml@cuda-120-pip | ||
uses: rapidsai/shared-action-workflows/.github/workflows/wheels-test.[email protected] | ||
with: | ||
matrix_filter: map(select(.ARCH == "amd64" and .PY_VER == "3.10" and (.CUDA_VER == "11.8.0" or .CUDA_VER == "12.0.1"))) | ||
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: "python -m pip install git+https://github.com/dask/[email protected] git+https://github.com/dask/[email protected] git+https://github.com/rapidsai/[email protected]" | ||
test-unittest: "python -m pytest -n 8 ./python/dask_cudf/dask_cudf/tests" | ||
script: ci/test_wheel_dask_cudf.sh |
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.