File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,10 @@ name: All in one
77on :
88 workflow_call :
99 inputs :
10- runner :
11- required : false
10+ runner_env :
11+ description : Which cloud to run on?
1212 type : string
13- description : ' Runner name'
14- default : ' arc-skc-aio-runner'
13+ default : SMS Lab
1514 kayobe_image :
1615 description : Kayobe container image
1716 type : string
8786 required : true
8887
8988jobs :
89+ runner-selection :
90+ uses : ./.github/workflows/runner-selector.yml
91+ with :
92+ runner_env : ${{ inputs.runner_env }}
9093 # NOTE: Runner needs unzip and nodejs packages.
9194 all-in-one :
9295 name : All in one
9396 if : ${{ inputs.if && !cancelled() }}
94- runs-on : ${{ inputs.runner }}
97+ environment : ${{ inputs.runner_env }}
98+ runs-on : ${{ needs.runner-selection.outputs.runner_name_aio }}
99+ needs :
100+ - runner-selection
95101 permissions : {}
96102 env :
97103 KAYOBE_ENVIRONMENT : ci-aio
You can’t perform that action at this time.
0 commit comments