Skip to content

Commit d3d9991

Browse files
authored
Do not run the environment job on 'osx' labled machines. (#11077)
- Do not run the environment job on 'osx' labeled machines. They might not be functional and that will block the PR completely from running even though we have not asked for mac builds. - There are two mac machines: x64 and arm/M1. The 'osx' label includes both. Unfortunately, the x64 has been broken for quite some time so we should at least not use the 'osx' label for the Environment job. We can probably use the 'M1' label to get the M1 mac machine. That one works fine at the moment.
1 parent 784d5f6 commit d3d9991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pipeline {
2525
stages {
2626
stage('Environment') {
2727
agent {
28-
label 'linux || osx'
28+
label 'linux'
2929
}
3030
steps {
3131
script {

0 commit comments

Comments
 (0)