-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1309 from rapidsai/branch-24.02
- Loading branch information
Showing
21 changed files
with
357 additions
and
137 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 |
---|---|---|
|
@@ -28,7 +28,7 @@ concurrency: | |
jobs: | ||
conda-python-build: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.02 | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
|
@@ -38,7 +38,7 @@ jobs: | |
if: github.ref_type == 'branch' | ||
needs: [conda-python-build] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.02 | ||
with: | ||
arch: "amd64" | ||
branch: ${{ inputs.branch }} | ||
|
@@ -51,29 +51,30 @@ jobs: | |
upload-conda: | ||
needs: [conda-python-build] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.02 | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
wheel-build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rapidsai/ci-conda:latest | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Build wheel | ||
run: ci/build_python_pypi.sh | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.RAPIDSAI_PYPI_TOKEN }} | ||
skip-existing: true | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
sha: ${{ inputs.sha }} | ||
date: ${{ inputs.date }} | ||
script: ci/build_wheel.sh | ||
# Package is pure Python and only ever requires one build. | ||
matrix_filter: map(select(.ARCH == "amd64" and .PY_VER == "3.10" and .CUDA_VER == "12.0.1")) | ||
wheel-publish: | ||
needs: wheel-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: ${{ inputs.build_type || 'branch' }} | ||
branch: ${{ inputs.branch }} | ||
sha: ${{ inputs.sha }} | ||
date: ${{ inputs.date }} | ||
package-name: dask-cuda |
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 |
---|---|---|
|
@@ -18,45 +18,37 @@ jobs: | |
- docs-build | ||
- wheel-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.02 | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.02 | ||
conda-python-build: | ||
needs: checks | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.02 | ||
with: | ||
build_type: pull-request | ||
conda-python-tests: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.02 | ||
with: | ||
build_type: pull-request | ||
docs-build: | ||
needs: conda-python-build | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-23.12 | ||
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.02 | ||
with: | ||
build_type: pull-request | ||
node_type: "gpu-v100-latest-1" | ||
arch: "amd64" | ||
container_image: "rapidsai/ci-conda:latest" | ||
run_script: "ci/build_docs.sh" | ||
wheel-build: | ||
needs: checks | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rapidsai/ci-conda:latest | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Build wheel | ||
run: ci/build_python_pypi.sh | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: pull-request | ||
# Package is pure Python and only ever requires one build. | ||
matrix_filter: map(select(.ARCH == "amd64" and .PY_VER == "3.10" and .CUDA_VER == "12.0.1")) | ||
script: "ci/build_wheel.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
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 |
---|---|---|
@@ -1 +1 @@ | ||
23.12.00 | ||
24.02.00 |
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 was deleted.
Oops, something went wrong.
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,28 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2023, NVIDIA CORPORATION. | ||
|
||
set -euo pipefail | ||
|
||
source rapids-configure-sccache | ||
source rapids-date-string | ||
|
||
version=$(rapids-generate-version) | ||
commit=$(git rev-parse HEAD) | ||
|
||
echo "${version}" | tr -d '"' > VERSION | ||
sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "dask_cuda/_version.py" | ||
|
||
# For nightlies we want to ensure that we're pulling in alphas as well. The | ||
# easiest way to do so is to augment the spec with a constraint containing a | ||
# min alpha version that doesn't affect the version bounds but does allow usage | ||
# of alpha versions for that dependency without --pre | ||
alpha_spec='' | ||
if ! rapids-is-release-build; then | ||
alpha_spec=',>=0.0.0a0' | ||
fi | ||
|
||
sed -r -i "s/rapids-dask-dependency==(.*)\"/rapids-dask-dependency==\1${alpha_spec}\"/g" pyproject.toml | ||
|
||
python -m pip wheel . -w dist -vvv --no-deps --disable-pip-version-check | ||
|
||
RAPIDS_PY_WHEEL_NAME="dask-cuda" rapids-upload-wheels-to-s3 dist |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This file is generated by `rapids-dependency-file-generator`. | ||
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. | ||
channels: | ||
- rapidsai | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
- nvidia | ||
dependencies: | ||
- click >=8.1 | ||
- cuda-version=11.4 | ||
- cudatoolkit | ||
- cudf==24.2.* | ||
- dask-cudf==24.2.* | ||
- distributed-ucxx==0.36.* | ||
- kvikio==24.2.* | ||
- numactl-devel-cos7-x86_64 | ||
- numba>=0.57 | ||
- numpy>=1.21 | ||
- numpydoc>=1.1.0 | ||
- pandas>=1.3,<1.6.0.dev0 | ||
- pre-commit | ||
- pynvml>=11.0.0,<11.5 | ||
- pytest | ||
- pytest-cov | ||
- python>=3.9,<3.11 | ||
- rapids-dask-dependency==24.2.* | ||
- setuptools>=64.0.0 | ||
- sphinx | ||
- sphinx-click>=2.7.1 | ||
- sphinx-rtd-theme>=0.5.1 | ||
- ucx-proc=*=gpu | ||
- ucx-py==0.36.* | ||
- ucxx==0.36.* | ||
- zict>=2.0.0 | ||
name: all_cuda-114_arch-x86_64 |
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,36 @@ | ||
# This file is generated by `rapids-dependency-file-generator`. | ||
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. | ||
channels: | ||
- rapidsai | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
- nvidia | ||
dependencies: | ||
- click >=8.1 | ||
- cuda-version=11.8 | ||
- cudatoolkit | ||
- cudf==24.2.* | ||
- dask-cudf==24.2.* | ||
- distributed-ucxx==0.36.* | ||
- kvikio==24.2.* | ||
- numactl-devel-cos7-x86_64 | ||
- numba>=0.57 | ||
- numpy>=1.21 | ||
- numpydoc>=1.1.0 | ||
- pandas>=1.3,<1.6.0.dev0 | ||
- pre-commit | ||
- pynvml>=11.0.0,<11.5 | ||
- pytest | ||
- pytest-cov | ||
- python>=3.9,<3.11 | ||
- rapids-dask-dependency==24.2.* | ||
- setuptools>=64.0.0 | ||
- sphinx | ||
- sphinx-click>=2.7.1 | ||
- sphinx-rtd-theme>=0.5.1 | ||
- ucx-proc=*=gpu | ||
- ucx-py==0.36.* | ||
- ucxx==0.36.* | ||
- zict>=2.0.0 | ||
name: all_cuda-118_arch-x86_64 |
Oops, something went wrong.