Skip to content

Commit

Permalink
fix: add variable to specify different runner in gh action
Browse files Browse the repository at this point in the history
Signed-off-by: Alessio Greggi <ale_grey_91@hotmail.it>
  • Loading branch information
alegrey91 committed Oct 12, 2023
1 parent 7172359 commit 8f928f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/sanity-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:

workflow_call:
inputs:
GH_RUNNER:
type: string
default: "ubuntu-latest"
SYSTEM_TESTS_BRANCH:
type: string
default: "master"
Expand Down Expand Up @@ -62,7 +65,7 @@ jobs:
matrix:
TEST: ${{ fromJson(needs.wf-preparation.outputs.TEST_NAMES) }}
needs: wf-preparation
runs-on: ubuntu-large
runs-on: ${{ inputs.GH_RUNNER }}
steps:

- name: Checkout systests repo
Expand Down

0 comments on commit 8f928f8

Please sign in to comment.