mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 19:04:32 +02:00
Merge pull request #559 from birarda/jenkins
add copyright to SMA implementation for push test
This commit is contained in:
commit
1b5835e39d
2 changed files with 8 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
|||
def hifiJob(String targetName, Boolean deploy) {
|
||||
def JENKINS_URL = 'https://jenkins.below92.com/'
|
||||
def GITHUB_HOOK_URL = 'https://github.com/worklist/hifi/'
|
||||
def GIT_REPO_URL = 'git@github.com:worklist/hifi.git'
|
||||
def HIPCHAT_ROOM = 'High Fidelity'
|
||||
|
||||
job {
|
||||
|
@ -9,7 +8,7 @@ def hifiJob(String targetName, Boolean deploy) {
|
|||
logRotator(7, -1, -1, -1)
|
||||
|
||||
scm {
|
||||
git(GIT_REPO_URL, 'master') { node ->
|
||||
git(GITHUB_HOOK_URL, 'master') { node ->
|
||||
node << includedRegions << "${targetName}/.*\nlibraries/.*"
|
||||
}
|
||||
}
|
||||
|
@ -22,7 +21,12 @@ def hifiJob(String targetName, Boolean deploy) {
|
|||
|
||||
'jenkins.plugins.hipchat.HipChatNotifier_-HipChatJobProperty' {
|
||||
room HIPCHAT_ROOM
|
||||
}
|
||||
}
|
||||
|
||||
'hudson.plugins.buildblocker.BuildBlockerProperty' {
|
||||
useBuildBlocker true
|
||||
blockingJobs 'hifi--seed'
|
||||
}
|
||||
}
|
||||
|
||||
project / 'triggers' << 'com.cloudbees.jenkins.GitHubPushTrigger' {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
// hifi
|
||||
//
|
||||
// Created by Stephen Birarda on 4/18/13.
|
||||
//
|
||||
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
#include "SharedUtil.h"
|
||||
|
|
Loading…
Reference in a new issue