-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJenkinsfile
59 lines (54 loc) · 1.75 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
def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > 1) milestone(buildNumber - 1)
milestone(buildNumber)
pipeline {
agent any
environment {
SLACK_CHANNEL = '#ci'
}
stages {
stage('Install') {
steps {
sh 'n --download engine'
sh 'n exec engine yarn install'
}
}
stage('Lint') {
steps {
sh 'n exec engine yarn lint'
sh 'n exec engine yarn prettier'
}
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('Build') {
steps {
sh 'n exec engine yarn build'
}
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'
)
}
}
}
}
}
}
}