coalesce interfaceAppleJob name with name of generated job

This commit is contained in:
Stephen Birarda 2013-08-19 13:16:16 -07:00
parent 9ee66288ab
commit d8798b7ed6

View file

@ -117,8 +117,8 @@ for (target in targets) {
}
/* setup the OS X interface builds */
interfaceAppleJob = hifiJob('interface', false)
interfaceAppleJob.with {
interfaceOSXJob = hifiJob('interface', false)
interfaceOSXJob.with {
name 'hifi-interface-osx'
scm {
@ -152,7 +152,11 @@ parameterizedJob.with {
}
scm {
git('git@github.com:/$GITHUB_USER/hifi.git', '$GIT_BRANCH') { node ->
node / 'wipeOutWorkspace' << true
node << {
wipeOutWorkspace true
useShallowClone true
}
}
}
configure { project ->
@ -168,7 +172,11 @@ parameterizedJob.with {
doxygenJob = hifiJob('docs', false)
doxygenJob.with {
scm {
git(GIT_REPO_URL, 'master') {}
git(GIT_REPO_URL, 'master') { node ->
node << {
useShallowClone true
}
}
}
configure { project ->