-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
146 lines (138 loc) · 3.92 KB
/
Jenkinsfile
File metadata and controls
146 lines (138 loc) · 3.92 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
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 {
echo 'Building..'
sh 'ant -f build.xml -v'
}
post {
success {
archiveArtifacts artifacts: 'dist/*.jar', fingerprint: true
}
}
}
stage('Deploy') {
agent {
label 'apache'
}
steps {
echo 'Deploying..'
sh "if ! [ -d '/var/www/html/rectangles/all/${env.BRANCH_NAME}' ]; then mkdir -p /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://192.168.105.30:8081/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 ("Testing docker install") {
agent {
label 'CentOS'
}
steps {
sh 'docker run hello-world'
}
}
stage ("Test on Debian") {
agent {
docker 'openjdk:8u151-jre'
}
steps {
sh "wget http://192.168.105.30:8081/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/"
}
}
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'
sh 'git pull origin'
echo 'Checking Out the Master Branch'
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: "psipos79@gmail.com"
)
}
}
}
}
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: "psipos79@gmail.com"
)
}
}
}