forked from aoimatsuba/showcar-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
57 lines (47 loc) · 1.18 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
pipeline {
// Execute the pipeline on the master, stages will still be executed on the agents
agent none
options {
timestamps() // Enable timestamps in the build log
disableConcurrentBuilds() // The pipeline should run only once at a time
preserveStashes(buildCount: 5)
buildDiscarder(logRotator(daysToKeepStr: '90'))
}
// Environment variables for all stages
environment {
AWS_DEFAULT_REGION="eu-west-1"
SERVICE="brave-flamingo"
}
stages {
stage('Build') {
when {
beforeAgent true
branch 'master'
}
agent { node { label 'build-as24assets' } }
steps {
sh './deploy/build.sh'
stash includes: 'dist/**/*', name: 'output-dist'
}
}
stage('DeployProd') {
when {
beforeAgent true
branch 'master'
}
environment {
BRANCH="master"
}
agent { node { label 'deploy-as24assets' } }
steps {
unstash 'output-dist'
sh './deploy/deploy.sh'
}
}
}
post {
failure {
slackSend channel: 'ug-activation-alerts', color: '#FF0000', message: "💣 ${env.JOB_NAME} [${env.BUILD_NUMBER}] failed."
}
}
}