Skip to content

Commit

Permalink
[legacy] ci: Disable macOS builds
Browse files Browse the repository at this point in the history
Those old macOS systems no longer exist.
  • Loading branch information
dennisklein committed Jul 3, 2024
1 parent b3268c3 commit 88df981
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -145,28 +145,8 @@ pipeline {
""")
}

if (env.CHANGE_ID != null) {
specs_list = [
[os: 'macOS'],
];
} else {
specs_list = [
[os: 'macos-11-x86_64'],
[os: 'macos-12-x86_64'],
[os: 'macos-12-arm64']
];
}

def macos_jobs = jobMatrix('macos', ctestcmd, specs_list)
{ spec, label, jobsh, ctest ->
sh """
hostname -f
export LABEL="${label}"
${ctest}
"""
}
throttle(['long']) {
parallel(linux_jobs + macos_jobs)
parallel(linux_jobs)
}
}
}
Expand Down

0 comments on commit 88df981

Please sign in to comment.