We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cefc965 commit bde08b5Copy full SHA for bde08b5
2 files changed
.github/workflows/build-test.yml
@@ -51,7 +51,7 @@ jobs:
51
if: ${{ fromJson(needs.gen-matrix.outputs.matrix) }}
52
needs: gen-matrix
53
name: build
54
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
55
timeout-minutes: 60
56
strategy:
57
fail-fast: false
genMatrix.js
@@ -63,6 +63,7 @@ const getDockerfileMatrixEntry = (file) => {
63
return {
64
version,
65
variant,
66
+ os: 'ubuntu-22.04'
67
};
68
69
0 commit comments