blob: abde0c6690adf4691b6b67f0eb73f6f4baade83d [file] [log] [blame]
#!groovy
if (env.NODE_LABELS == null) {
env.NODE_LABELS = "(ubuntu)&&(!ubuntu-4)&&(!ubuntu-us1)&&(!ubuntu-eu2)&&(!qnode3)&&(!H23)"
}
node(env.NODE_LABELS) {
checkout scm
withCredentials([[
$class: 'UsernamePasswordMultiBinding',
credentialsId: 'mesos-docker-bot',
usernameVariable: 'USERNAME',
passwordVariable: 'PASSWORD']]) {
sh("support/jenkins/docker-centos.sh")
}
}