-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
81 lines (75 loc) · 2.49 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
pipeline {
agent any
environment {
SLACK_CHANNEL = '#ci'
}
stages {
stage('install dependencies') {
steps {
sh 'yarn install --mutex network'
}
}
stage('lint') {
steps {
sh 'yarn lint'
}
post {
failure {
script {
if (env.BRANCH_NAME == 'master') {
slackSend(
channel: env.SLACK_CHANNEL,
message: "${env.JOB_NAME.split('/')[1]} (${env.BRANCH_NAME}) ${env.STAGE_NAME.toLowerCase()} failed. (<${env.RUN_DISPLAY_URL}|View in Jenkins>)",
color: 'warning'
)
}
}
}
}
}
stage('test') {
environment {
CI = 'true'
NODE_ENV = 'test'
}
steps {
sh 'yarn test:ci'
junit 'junit.xml'
}
post {
failure {
script {
if (env.BRANCH_NAME == 'master') {
slackSend(
channel: env.SLACK_CHANNEL,
message: "${env.JOB_NAME.split('/')[1]} (${env.BRANCH_NAME}) ${env.STAGE_NAME.toLowerCase()} failed. (<${env.RUN_DISPLAY_URL}|View in Jenkins>)",
color: 'danger'
)
}
}
}
}
}
stage('build') {
steps {
sh 'yarn build'
// Make sure the build output is unchanged from the current
// commit.
sh '[ "$(git status -s dist/ | wc -l)" -eq "0" ]'
}
post {
failure {
script {
if (env.BRANCH_NAME == 'master') {
slackSend(
channel: env.SLACK_CHANNEL,
message: "${env.JOB_NAME.split('/')[1]} (${env.BRANCH_NAME}) ${env.STAGE_NAME.toLowerCase()} failed. (<${env.RUN_DISPLAY_URL}|View in Jenkins>)",
color: 'warning'
)
}
}
}
}
}
}
}