Skip to content

Commit 4b0bbde

Browse files
committed
ci: skip intel MacOS hosts
1 parent 4d5a7cd commit 4b0bbde

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

_assets/ci/Jenkinsfile.desktop

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@ pipeline {
136136
/* This function extracts the platform from the AGENT_LABEL */
137137
def getPlatformFromLabel(String label = params.AGENT_LABEL) {
138138
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+
}
139143
if (label.contains(platform)) {
140144
return platform
141145
}

0 commit comments

Comments
 (0)