mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:08:00 +02:00
remove the HIPCHAT_AUTH_TOKEN and ARTIFACT_DESTINATION
This commit is contained in:
parent
c9d7cf1e8f
commit
db118d3bfc
1 changed files with 2 additions and 4 deletions
|
@ -2,9 +2,7 @@ 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 GIT_REPO_URL = 'git@github.com:worklist/hifi.git'
|
||||||
def HIPCHAT_AUTH_TOKEN = '4ad6553471db605629852ff3265408'
|
|
||||||
def HIPCHAT_ROOM = 'High Fidelity'
|
def HIPCHAT_ROOM = 'High Fidelity'
|
||||||
def ARTIFACT_DESTINATION = 'a-tower.below92.com'
|
|
||||||
|
|
||||||
job {
|
job {
|
||||||
name "hifi-${targetName}"
|
name "hifi-${targetName}"
|
||||||
|
@ -54,7 +52,7 @@ def hifiJob(String targetName, Boolean deploy) {
|
||||||
|
|
||||||
if (deploy) {
|
if (deploy) {
|
||||||
publishers {
|
publishers {
|
||||||
publishScp(ARTIFACT_DESTINATION) {
|
publishScp("${ARTIFACT_DESTINATION}") {
|
||||||
entry("**/build/${targetName}", "deploy/${targetName}")
|
entry("**/build/${targetName}", "deploy/${targetName}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,7 +81,7 @@ def hifiJob(String targetName, Boolean deploy) {
|
||||||
|
|
||||||
'jenkins.plugins.hipchat.HipChatNotifier' {
|
'jenkins.plugins.hipchat.HipChatNotifier' {
|
||||||
jenkinsUrl JENKINS_URL
|
jenkinsUrl JENKINS_URL
|
||||||
authToken HIPCHAT_AUTH_TOKEN
|
authToken "${HIPCHAT_AUTH_TOKEN}"
|
||||||
room HIPCHAT_ROOM
|
room HIPCHAT_ROOM
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue