-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathJenkinsfile
32 lines (32 loc) · 891 Bytes
/
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
pipeline {
agent any
options {
timestamps()
}
stages {
stage ('Prod') {
when {
branch 'master'
}
steps {
withCredentials([
string(credentialsId: 'PRODUCTION_HOST', variable: 'HOST'),
string(credentialsId: 'PRODUCTION_PORT', variable: 'PORT'),
]) {
sshagent (credentials: ['PRODUCTION_AUTH']) {
sh 'make deploy'
}
}
}
}
}
post {
failure {
emailext (
subject: "FAIL Job ${env.JOB_NAME} ${env.BUILD_NUMBER}",
body: "Check console output at: ${env.BUILD_URL}/console",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}
}
}