-
Notifications
You must be signed in to change notification settings - Fork 390
/
Copy pathJenkinsfile
134 lines (128 loc) · 3.76 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
pipeline {
agent none
environment {
MAJOR_VERSION = 1
}
stages {
stage('Say Hello') {
agent any
steps {
sayHello 'Awesome Student!'
}
}
stage('Git Information') {
agent any
steps {
echo "My Branch Name: ${env.BRANCH_NAME}"
script {
def myLib = new linuxacademy.git.gitStuff();
echo "My Commit: ${myLib.gitCommit("${env.WORKSPACE}/.git")}"
}
}
}
stage('Unit Tests') {
agent {
label 'apache'
}
steps {
sh 'ant -f test.xml -v'
junit 'reports/result.xml'
}
}
stage('build') {
agent {
label 'apache'
}
steps {
sh 'ant -f build.xml -v'
}
post {
success {
archiveArtifacts artifacts: 'dist/*.jar', fingerprint: true
}
}
}
stage('deploy') {
agent {
label 'apache'
}
steps {
sh "if ![ -d '/var/www/html/rectangles/all/${env.BRANCH_NAME}' ]; then mkdir /var/www/html/rectangles/all/${env.BRANCH_NAME}; fi"
sh "cp dist/rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar /var/www/html/rectangles/all/${env.BRANCH_NAME}/"
}
}
stage("Running on CentOS") {
agent {
label 'CentOS'
}
steps {
sh "wget http://brandon4231.mylabserver.com/rectangles/all/${env.BRANCH_NAME}/rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar"
sh "java -jar rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar 3 4"
}
}
stage("Test on Debian") {
agent {
docker 'openjdk:8u121-jre'
}
steps {
sh "wget http://brandon4231.mylabserver.com/rectangles/all/${env.BRANCH_NAME}/rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar"
sh "java -jar rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar 3 4"
}
}
stage('Promote to Green') {
agent {
label 'apache'
}
when {
branch 'master'
}
steps {
sh "cp /var/www/html/rectangles/all/${env.BRANCH_NAME}/rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar /var/www/html/rectangles/green/rectangle_${env.MAJOR_VERSION}.${env.BUILD_NUMBER}.jar"
}
}
stage('Promote Development Branch to Master') {
agent {
label 'apache'
}
when {
branch 'development'
}
steps {
echo "Stashing Any Local Changes"
sh 'git stash'
echo "Checking Out Development Branch"
sh 'git checkout development'
echo 'Checking Out Master Branch'
sh 'git pull origin'
sh 'git checkout master'
echo 'Merging Development into Master Branch'
sh 'git merge development'
echo 'Pushing to Origin Master'
sh 'git push origin master'
echo 'Tagging the Release'
sh "git tag rectangle-${env.MAJOR_VERSION}.${env.BUILD_NUMBER}"
sh "git push origin rectangle-${env.MAJOR_VERSION}.${env.BUILD_NUMBER}"
}
post {
success {
emailext(
subject: "${env.JOB_NAME} [${env.BUILD_NUMBER}] Development Promoted to Master",
body: """<p>'${env.JOB_NAME} [${env.BUILD_NUMBER}]' Development Promoted to Master":</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
to: "[email protected]"
)
}
}
}
}
post {
failure {
emailext(
subject: "${env.JOB_NAME} [${env.BUILD_NUMBER}] Failed!",
body: """<p>'${env.JOB_NAME} [${env.BUILD_NUMBER}]' Failed!":</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
to: "[email protected]"
)
}
}
}