forked from inakianduaga/showcar-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
115 lines (96 loc) · 2.67 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
pipeline {
// Execute the pipeline on the master, stages will still be executed on the agents
agent none
options {
disableConcurrentBuilds() // The pipeline should run only once at a time
preserveStashes(buildCount: 5)
}
// Environment variables for all stages
environment {
AWS_DEFAULT_REGION="eu-west-1"
SERVICE_NAME="showcar-ui"
COMMIT_HASH=getInvokedBuildNumber()
}
stages {
// TODO - replace Travis
stage('BuildBranch') {
when {
beforeAgent true
not {
anyOf {
branch 'release'
branch 'master'
}
}
}
environment {
BRANCH="${env.BRANCH_NAME}"
}
agent { node { label 'build-node' } }
steps {
sh './deploy/prepare.sh'
stash includes: 'dist/*', name: 'output-dev-dist'
}
}
stage('DeployBranch') {
when {
beforeAgent true
not {
anyOf {
branch 'release'
branch 'master'
}
}
}
environment {
BRANCH="${env.BRANCH_NAME}"
}
agent { node { label 'deploy-as24dev' } }
steps {
unstash 'output-dev-dist'
sh './deploy/deploy.sh'
slackSend channel: 'as24_acq_cxp_fizz', color: '#00FF00', message: "Showcar-UI :branch: ${env.BRANCH_NAME} is deployed, check it with toggle `?sc_branch=${env.BRANCH_NAME}`"
}
}
// TODO - replace BrowserStack / Rakefile
// stage('IntegrationTests') {
// }
stage('BuildProd') {
when {
beforeAgent true
branch 'release'
}
environment {
BRANCH='master'
}
agent { node { label 'build-node' } }
steps {
sh './deploy/prepare.sh'
stash includes: 'dist/*', name: 'output-prod-dist'
}
}
stage('DeployProd') {
when {
beforeAgent true
branch 'release'
}
environment {
BRANCH='master'
}
agent { node { label 'deploy-as24dev' } }
steps {
unstash 'output-prod-dist'
sh './deploy/deploy.sh'
slackSend channel: 'as24_acq_cxp_fizz', color: '#00FF00', message: ":+1: ${env.JOB_NAME} [${env.BUILD_NUMBER}] was released. For the details go to: <https://github.com/Scout24/showcar-ui|showcar-ui>. (<${env.BUILD_URL}|Open>)"
}
}
}
post {
failure {
slackSend channel: 'as24_acq_cxp_fizz', color: '#FF0000', message: ":bomb: ${env.JOB_NAME} [${env.BUILD_NUMBER}] failed. (<${env.BUILD_URL}|Open>)"
}
aborted {
slackSend channel: 'as24_acq_cxp_fizz', color: '#FFFF00', message: ":-1: ${env.JOB_NAME} [${env.BUILD_NUMBER}] aborted. (<${env.BUILD_URL}|Open>)"
}
}
}