CI: Do not run unstable tests on macOS 10.14 hosts

This commit is contained in:
Dennis Klein
2020-11-12 20:56:31 +01:00
committed by Dennis Klein
parent f9219dab65
commit c51e88e114
2 changed files with 10 additions and 0 deletions

5
Jenkinsfile vendored
View File

@@ -46,6 +46,11 @@ def jobMatrix(String prefix, List specs, Closure callback) {
echo "export GIT_BRANCH=$JOB_BASE_NAME" >> Dart.cfg
echo "echo \\\$PATH" >> Dart.cfg
'''
if (os =~ /macOS10.14/) {
sh "echo \"export EXCLUDE_UNSTABLE_DDS_TESTS=1\" >> Dart.cfg"
}
sh 'cat Dart.cfg'
callback.call(spec, label)