-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
50 lines (39 loc) · 1.46 KB
/
Jenkinsfile
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
50
#!groovy
node {
currentBuild.result = "SUCCESS"
// checkout sources
checkout scm
try {
stage('Deploy') {
if (env.BRANCH_NAME == "develop") {
sshagent (credentials: ['osma_staging']) {
sh 'ssh ubuntu@${OSMA_STAGING} "cd /home/ubuntu/projects/osm-analytics-api && ./start.sh"'
}
} else {
}
notifySuccessful()
}
} catch (err) {
currentBuild.result = "FAILURE"
notifyFailed()
throw err
}
}
def notifySuccessful() {
slackSend (color: '#00FF00', channel: '#osma', message: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
emailext (
subject: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
body: """<p>SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href="${env.BUILD_URL}">${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}
def notifyFailed() {
slackSend (color: '#FF0000', channel: '#osma', message: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
emailext (
subject: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
body: """<p>FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href="${env.BUILD_URL}">${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}