mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 06:24:41 +02:00
fix the job block for new hifi--seed name
This commit is contained in:
parent
13c46152c3
commit
b431657abf
1 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
def hifiJob(String targetName, Boolean deploy) {
|
def hifiJob(String targetName, Boolean deploy) {
|
||||||
def JENKINS_URL = 'https://jenkins.below92.com/'
|
def JENKINS_URL = 'https://jenkins.below92.com/'
|
||||||
def GITHUB_HOOK_URL = 'https://github.com/worklist/hifi/'
|
def GITHUB_HOOK_URL = 'https://github.com/worklist/hifi/'
|
||||||
def GIT_REPO_URL = 'git@github.com:worklist/hifi.git'
|
|
||||||
def HIPCHAT_ROOM = 'High Fidelity'
|
def HIPCHAT_ROOM = 'High Fidelity'
|
||||||
|
|
||||||
job {
|
job {
|
||||||
|
@ -9,7 +8,7 @@ def hifiJob(String targetName, Boolean deploy) {
|
||||||
logRotator(7, -1, -1, -1)
|
logRotator(7, -1, -1, -1)
|
||||||
|
|
||||||
scm {
|
scm {
|
||||||
git(GIT_REPO_URL, 'master') { node ->
|
git(GITHUB_HOOK_URL, 'master') { node ->
|
||||||
node << includedRegions << "${targetName}/.*\nlibraries/.*"
|
node << includedRegions << "${targetName}/.*\nlibraries/.*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,7 +25,7 @@ def hifiJob(String targetName, Boolean deploy) {
|
||||||
|
|
||||||
'hudson.plugins.buildblocker.BuildBlockerProperty' {
|
'hudson.plugins.buildblocker.BuildBlockerProperty' {
|
||||||
useBuildBlocker true
|
useBuildBlocker true
|
||||||
blockingJobs 'hifi - seed'
|
blockingJobs 'hifi--seed'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue