We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e95154c + 9426f15 commit d580dedCopy full SHA for d580ded
.github/workflows/module_acceptance.yml
@@ -7,7 +7,6 @@ on:
7
runs_on:
8
description: "The operating system used for the runner."
9
required: false
10
- default: "ubuntu-latest"
11
type: "string"
12
flags:
13
description: "Additional flags to pass to matrix_from_metadata_v3."
@@ -34,7 +33,7 @@ jobs:
34
33
35
setup_matrix:
36
name: "Setup Test Matrix"
37
- runs-on: ${{ inputs.runs_on }}
+ runs-on: ubuntu-latest
38
outputs:
39
acceptance_matrix: ${{ steps.get-matrix.outputs.matrix }}
40
@@ -66,7 +65,7 @@ jobs:
66
65
acceptance:
67
name: "Acceptance tests (${{matrix.platforms.label}}, ${{matrix.collection}})"
68
needs: "setup_matrix"
69
+ runs-on: ${{ inputs.runs_on || matrix.platforms.runner }}
70
timeout-minutes: 180
71
strategy:
72
fail-fast: false
0 commit comments