Skip to content

Commit 5dbb28b

Browse files
authored
Use build_type input (#1812)
Fixes `build_type` input not being used in `test` workflows. See #1811 (comment).
1 parent fe66a24 commit 5dbb28b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ jobs:
2121
secrets: inherit
2222
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
2323
with:
24-
build_type: nightly
24+
build_type: ${{ inputs.build_type }}
2525
branch: ${{ inputs.branch }}
2626
date: ${{ inputs.date }}
2727
sha: ${{ inputs.sha }}
2828
python-tests:
2929
secrets: inherit
3030
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
3131
with:
32-
build_type: nightly
32+
build_type: ${{ inputs.build_type }}
3333
branch: ${{ inputs.branch }}
3434
date: ${{ inputs.date }}
3535
sha: ${{ inputs.sha }}
3636
wheel-tests:
3737
secrets: inherit
3838
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
3939
with:
40-
build_type: nightly
40+
build_type: ${{ inputs.build_type }}
4141
branch: ${{ inputs.branch }}
4242
date: ${{ inputs.date }}
4343
sha: ${{ inputs.sha }}

0 commit comments

Comments
 (0)