Skip to content

Commit 64f3c61

Browse files
runner
1 parent c56e361 commit 64f3c61

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/smoke_tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ on:
3434
default: "smoke"
3535
required: false
3636
description: "Markers to use for pytest"
37+
runner:
38+
required: false
39+
type: string
40+
default: "runner-4"
41+
description: "Runner to use for the build job"
3742

3843
env:
3944
BUILD_TYPE: "Release"
@@ -69,7 +74,7 @@ jobs:
6974
runner: runner-4
7075

7176
validation-prepare-setup-mcm:
72-
runs-on: runner-4
77+
runs-on: ${{ inputs.runner }}
7378
needs: call-bare-metal-build
7479
timeout-minutes: 60
7580
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
@@ -126,7 +131,7 @@ jobs:
126131
127132
validation-run-tests:
128133
needs: validation-prepare-setup-mcm
129-
runs-on: runner-4
134+
runs-on: ${{ inputs.runner }}
130135
timeout-minutes: 60
131136
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
132137
env:

0 commit comments

Comments
 (0)