-
Notifications
You must be signed in to change notification settings - Fork 242
/
Jenkinsfile
75 lines (66 loc) · 1.31 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
#!groovy
pipeline {
agent any
environment {
git_commit_message = ''
git_commit_diff = ''
git_commit_author = ''
git_commit_author_name = ''
git_commit_author_email = ''
}
stages {
// Build
stage('Build') {
agent {
label 'node'
}
steps {
deleteDir()
checkout scm
}
}
// Static Code Analysis
stage('Static Code Analysis') {
agent {
label 'node'
}
steps {
deleteDir()
checkout scm
sh "echo 'Run Static Code Analysis'"
}
}
// Unit Tests
stage('Unit Tests') {
agent {
label 'node'
}
steps {
deleteDir()
checkout scm
sh "echo 'Run Unit Tests'"
}
}
// Acceptance Tests
stage('Acceptance Tests') {
agent {
label 'node'
}
steps {
deleteDir()
checkout scm
sh "echo 'Run Acceptance Tests'"
}
}
}
post {
success {
sh "echo 'Send mail on success'"
// mail to:"[email protected]", subject:"SUCCESS: ${currentBuild.fullDisplayName}", body: "Yay, we passed."
}
failure {
sh "echo 'Send mail on failure'"
// mail to:"[email protected]", subject:"FAILURE: ${currentBuild.fullDisplayName}", body: "Boo, we failed."
}
}
}