We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cefc965 commit 924f032Copy full SHA for 924f032
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
@@ -60,10 +60,16 @@ const getDockerfileMatrixEntry = (file) => {
60
61
const version = getFullNodeVersionFromDockerfile(file);
62
63
- return {
+ return [{
64
version,
65
variant,
66
- };
+ os: 'ubuntu-24.04'
67
+ },
68
+ {
69
+ version,
70
+ variant,
71
+ os: 'ubuntu-24.04-arm64'
72
+ }];
73
};
74
75
const generateBuildMatrix = (filesAdded, filesModified, filesRenamed) => {
0 commit comments