forked from mdn/interactive-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
58 lines (54 loc) · 1.16 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
#!groovy
def notify_slack(Map args, credential_id='slack-hook') {
def command = "${env.WORKSPACE}/bin/slack-notify.sh"
withCredentials([string(credentialsId: credential_id, variable: 'HOOK')]) {
for (arg in args) {
command += " --${arg.key} '${arg.value}'"
}
command += " --hook '${HOOK}'"
sh command
}
}
def buildSite() {
stage ('build') {
try {
sh 'bin/build.sh'
} catch(err) {
notify_slack([
status: "failure",
stage: "Build ${env.BRANCH_NAME} failed"
])
throw err
}
}
}
def syncS3(String bucket, String extra_args='') {
stage ('s3 sync') {
try {
sh "bin/s3-sync.sh ${bucket} ${extra_args}"
} catch(err) {
notify_slack([
status: "failure",
stage: "S3 Sync ${env.BRANCH_NAME} failed"
])
throw err
}
notify_slack([
status: "success",
stage: "S3 Sync ${env.BRANCH_NAME} shipped"
])
}
}
node {
stage ('Prepare') {
checkout scm
}
if ( env.BRANCH_NAME == 'prod' ) {
buildSite()
syncS3('mdninteractive-b77d14bceaaa9ea4')
}
stage('Cleanup') {
// Clean our workspace
cleanWs()
}
}