forked from raster-foundry/granary
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
84 lines (73 loc) · 3.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!groovy
node {
try {
env.COMPOSE_PROJECT_NAME = "granary-${env.BRANCH_NAME}"
stage('checkout') {
checkout scm
}
stage('cibuild') {
wrap([$class: 'AnsiColorBuildWrapper']) {
sh './scripts/cibuild'
}
}
env.GRANARY_SETTINGS_BUCKET = 'rasterfoundry-production-config-us-east-1'
if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.startsWith('test/') || env.BRANCH_NAME.startsWith('release/') || env.BRANCH_NAME.startsWith('hotfix/')) {
stage('cipublish') {
// Decode the Quay credentials stored within Jenkins.
withCredentials([[$class: 'StringBinding',
credentialsId: 'GRANARY_QUAY_USER',
variable: 'QUAY_USER'],
[$class: 'StringBinding',
credentialsId: 'GRANARY_QUAY_PASSWORD',
variable: 'QUAY_PASSWORD']]) {
wrap([$class: 'AnsiColorBuildWrapper']) {
sh './scripts/cipublish'
}
}
}
// Plan and apply the current state of the staging infrastructure as
// outlined by whatever branch of the `granary` repository passes
// the conditional above (`master`, `test/*`, `release/*`,
// `hotfix/*`).
stage('infra') {
// Use `git` to get the primary repository's current commmit SHA and
// set it as the value of the `GIT_COMMIT` environment variable.
env.GIT_COMMIT = sh(returnStdout: true, script: 'git rev-parse --short HEAD').trim()
wrap([$class: 'AnsiColorBuildWrapper']) {
sh 'docker-compose -f docker-compose.ci.yml run --rm terraform ./scripts/infra plan'
sh 'docker-compose -f docker-compose.ci.yml run --rm terraform ./scripts/infra apply'
}
def slackMessage = ":jenkins: *Granary (${env.BRANCH_NAME}) #${env.BUILD_NUMBER}*"
slackMessage += "\ndeployed revision <https://github.com/raster-foundry/granary/tree/${env.GIT_COMMIT}|${env.GIT_COMMIT}>"
slackMessage += "\n<${env.BUILD_URL}|View Build>"
slackSend channel: '#granary', color: 'good', message: slackMessage
}
}
stage('notify') {
if (currentBuild.currentResult == 'SUCCESS' && currentBuild.previousBuild?.result != 'SUCCESS') {
def slackMessage = ":jenkins: *Granary (${env.BRANCH_NAME}) #${env.BUILD_NUMBER}*"
if (env.CHANGE_TITLE) {
slackMessage += "\n${env.CHANGE_TITLE} - ${env.CHANGE_AUTHOR}"
}
slackMessage += "\n<${env.BUILD_URL}|View Build>"
slackSend channel: '#granary', color: 'good', message: slackMessage
}
}
} catch (err) {
// Some exception was raised in the `try` block above. Assemble
// an appropirate error message for Slack.
def slackMessage = ":jenkins-angry: *Granary (${env.BRANCH_NAME}) #${env.BUILD_NUMBER}*"
if (env.CHANGE_TITLE) {
slackMessage += "\n${env.CHANGE_TITLE} - ${env.CHANGE_AUTHOR}"
}
slackMessage += "\n<${env.BUILD_URL}|View Build>"
slackSend channel: '#granary', color: 'danger', message: slackMessage
// Re-raise the exception so that the failure is propagated to
// Jenkins.
throw err
} finally {
// Pass or fail, ensure that the services and networks
// created by Docker Compose are torn down.
sh 'docker-compose down -v'
}
}