Jenkinsfile: hardcode tap.

master
Mike McQuaid 2017-04-07 20:10:56 +01:00
parent 3d52a09b00
commit 8f27ebcb7e
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ def test_bot(args) {
timeout(time: 6, unit: 'HOURS') {
withEnv(["PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin",
'HOMEBREW_DEVELOPER=1']) {
sh "brew test-bot ${args}"
sh "brew test-bot --tap=homebrew/core ${args}"
}
}
}
@ -82,7 +82,7 @@ try {
$class: 'UsernamePasswordMultiBinding',
credentialsId: '5b6903a9-9f39-4c1b-9de6-ba0dd99c82a0',
passwordVariable: 'BINTRAY_KEY', usernameVariable: 'BINTRAY_USER']]) {
test_bot("--ci-upload --tap=homebrew/core")
test_bot("--ci-upload")
}
cleanup()
}