Skip to content

Commit

Permalink
inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleFromNVIDIA committed May 7, 2024
1 parent 56dfdb3 commit 750ae6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks-and-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
needs: check-style
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ input.build_type }}
build_type: ${{ inputs.build_type }}
script: "ci/build_python.sh"
# Select only the build with the minimum Python version and the maximum CUDA version
matrix_filter: '[map(select(.ARCH == "amd64")) | min_by((.PY_VER | split(".") | map(tonumber)), (.CUDA_VER | split(".") | map(-tonumber)))]'
build-wheel:
needs: check-style
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ input.build_type }}
build_type: ${{ inputs.build_type }}
script: "ci/build_wheel.sh"
# Select only the build with the minimum Python version and the maximum CUDA version
matrix_filter: '[map(select(.ARCH == "amd64")) | min_by((.PY_VER | split(".") | map(tonumber)), (.CUDA_VER | split(".") | map(-tonumber)))]'
Expand All @@ -40,12 +40,12 @@ jobs:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ input.build_type }}
build_type: ${{ inputs.build_type }}
package-name: rapids-build-backend
publish-conda:
needs:
- build-conda
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ input.build_type }}
build_type: ${{ inputs.build_type }}

0 comments on commit 750ae6a

Please sign in to comment.