mirror of
https://github.com/overte-org/overte.git
synced 2025-07-10 21:18:54 +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 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/.*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,6 +22,11 @@ def hifiJob(String targetName, Boolean deploy) {
|
||||||
'jenkins.plugins.hipchat.HipChatNotifier_-HipChatJobProperty' {
|
'jenkins.plugins.hipchat.HipChatNotifier_-HipChatJobProperty' {
|
||||||
room HIPCHAT_ROOM
|
room HIPCHAT_ROOM
|
||||||
}
|
}
|
||||||
|
|
||||||
|
'hudson.plugins.buildblocker.BuildBlockerProperty' {
|
||||||
|
useBuildBlocker true
|
||||||
|
blockingJobs 'hifi--seed'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
project / 'triggers' << 'com.cloudbees.jenkins.GitHubPushTrigger' {
|
project / 'triggers' << 'com.cloudbees.jenkins.GitHubPushTrigger' {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// hifi
|
// hifi
|
||||||
//
|
//
|
||||||
// Created by Stephen Birarda on 4/18/13.
|
// Created by Stephen Birarda on 4/18/13.
|
||||||
//
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "SharedUtil.h"
|
#include "SharedUtil.h"
|
||||||
|
|
Loading…
Reference in a new issue