forked from bcgov/nrts-prc-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile - master
49 lines (47 loc) · 1.39 KB
/
Jenkinsfile - master
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
pipeline {
agent any
options {
skipDefaultCheckout()
}
stages {
stage('Building: admin (master branch)') {
steps {
script {
try {
echo "Building: ${env.JOB_NAME} #${env.BUILD_ID}"
notifyBuild("Building: ${env.JOB_NAME} #${env.BUILD_ID}", "YELLOW")
openshiftBuild bldCfg: 'admin-angular-on-nginx-master-build-angular-app-build', showBuildLogs: 'true'
} catch (e) {
notifyBuild("BUILD ${env.JOB_NAME} #${env.BUILD_ID} ABORTED", "RED")
error('Stopping early…')
}
}
}
}
stage('Deploying: admin (master branch)') {
steps {
script {
try {
notifyBuild("Deploying: ${env.JOB_NAME} #${env.BUILD_ID}", "YELLOW")
openshiftBuild bldCfg: 'admin-angular-on-nginx-master-build', showBuildLogs: 'true'
} catch (e) {
notifyBuild("BUILD ${env.JOB_NAME} #${env.BUILD_ID} ABORTED", "RED")
error('Stopping early…')
}
notifyBuild("Deployed ${env.JOB_NAME} #${env.BUILD_ID}", "GREEN")
}
}
}
}
}
def notifyBuild(String msg = '', String colour = 'GREEN') {
if (colour == 'YELLOW') {
colorCode = '#FFFF00'
} else if (colour == 'GREEN') {
colorCode = '#00FF00'
} else {
colorCode = '#FF0000'
}
// Send notifications
slackSend (color: colorCode, message: msg)
}