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.
1 parent c71ed01 commit 9c0a32dCopy full SHA for 9c0a32d
.github/workflows/validate.yml
@@ -61,12 +61,14 @@ jobs:
61
target.platforms.forEach(platform => {
62
includes.push({
63
target: targetName,
64
- platform: platform
+ platform: platform,
65
+ runner: platform.startsWith('linux/arm') ? 'ubuntu-24.04-arm' : 'ubuntu-24.04'
66
});
67
68
} else {
69
- target: targetName
70
+ target: targetName,
71
+ runner: 'ubuntu-24.04'
72
73
}
74
@@ -75,7 +77,7 @@ jobs:
75
77
76
78
79
validate:
- runs-on: ubuntu-24.04
80
+ runs-on: ${{ matrix.runner }}
81
needs:
82
- prepare
83
strategy:
0 commit comments