Skip to content

Commit f04566b

Browse files
authored
Add build_type input to test.yaml (#831)
Exposes `build_type` as an input in `test.yaml` so that `test.yaml` can be manually run against a specific branch/commit as needed. The default value is still `nightly`, and without maintainer intervention, that is what will run each night. xref rapidsai/build-planning#147 Authors: - Gil Forsyth (https://github.com/gforsyth) - Bradley Dice (https://github.com/bdice) Approvers: - Bradley Dice (https://github.com/bdice) URL: #831
1 parent 0717baf commit f04566b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,24 @@ on:
1212
sha:
1313
required: true
1414
type: string
15+
build_type:
16+
type: string
17+
default: nightly
1518

1619
jobs:
1720
conda-python-tests:
1821
secrets: inherit
1922
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2023
with:
21-
build_type: nightly
24+
build_type: ${{ inputs.build_type }}
2225
branch: ${{ inputs.branch }}
2326
date: ${{ inputs.date }}
2427
sha: ${{ inputs.sha }}
2528
wheel-tests:
2629
secrets: inherit
2730
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2831
with:
29-
build_type: nightly
32+
build_type: ${{ inputs.build_type }}
3033
branch: ${{ inputs.branch }}
3134
date: ${{ inputs.date }}
3235
sha: ${{ inputs.sha }}

0 commit comments

Comments
 (0)