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 4d5a7cd commit 4b0bbdeCopy full SHA for 4b0bbde
_assets/ci/Jenkinsfile.desktop
@@ -136,6 +136,10 @@ pipeline {
136
/* This function extracts the platform from the AGENT_LABEL */
137
def getPlatformFromLabel(String label = params.AGENT_LABEL) {
138
for (platform in ['linux', 'macos', 'windows']) {
139
+ // status-go jobs to utilize only ARM MacOS hosts
140
+ if (label == 'macos') {
141
+ return 'macos && aarch64'
142
+ }
143
if (label.contains(platform)) {
144
return platform
145
}
0 commit comments