From fe3b3bbc95d0d9d027d8927bb7f09b0fb13197ca Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 3 Dec 2024 11:16:19 -0600 Subject: [PATCH 1/3] add 'wheel' to ci-wheel image (#215) --- ci-wheel.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci-wheel.Dockerfile b/ci-wheel.Dockerfile index fa8d5f3..fbc5dd5 100644 --- a/ci-wheel.Dockerfile +++ b/ci-wheel.Dockerfile @@ -139,7 +139,8 @@ python -m pip install \ patchelf \ 'pydistcheck==0.8.*' \ 'rapids-dependency-file-generator==1.*' \ - twine + twine \ + wheel pyenv rehash EOF From a5b59e87f414bf4531a69ac85897fd9592dbbbf1 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 3 Dec 2024 12:05:41 -0600 Subject: [PATCH 2/3] limit to 150 concurrent jobs per workflow (#216) --- .github/workflows/build-and-publish-images.yaml | 1 + .github/workflows/build-image.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build-and-publish-images.yaml b/.github/workflows/build-and-publish-images.yaml index c6f72fe..7900fbe 100644 --- a/.github/workflows/build-and-publish-images.yaml +++ b/.github/workflows/build-and-publish-images.yaml @@ -32,6 +32,7 @@ jobs: name: ${{ matrix.IMAGE_REPO }} needs: compute-matrix strategy: + max-parallel: 150 matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }} fail-fast: false secrets: inherit diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index 2b55cbf..5374a7f 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -32,6 +32,7 @@ jobs: run: name: build (${{ matrix.CUDA_VER }}, ${{ matrix.PYTHON_VER }}, ${{ matrix.LINUX_VER }}, ${{ matrix.ARCH }}) strategy: + max-parallel: 150 matrix: ARCH: ${{ fromJSON(inputs.ARCHES) }} CUDA_VER: ["${{ inputs.CUDA_VER }}"] From b26d5645be81dbce6519a4eac9b5bba6afcb5c2f Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 16 Dec 2024 11:50:49 -0600 Subject: [PATCH 3/3] Enable 'quiet: true' in condarc (#217) --- context/condarc.tmpl | 1 + 1 file changed, 1 insertion(+) diff --git a/context/condarc.tmpl b/context/condarc.tmpl index 9700665..b33f107 100644 --- a/context/condarc.tmpl +++ b/context/condarc.tmpl @@ -13,3 +13,4 @@ conda-build: output_folder: $RAPIDS_CONDA_BLD_OUTPUT_DIR number_channel_notices: 0 always_yes: true +quiet: true