Permalink
Newer
100644
111 lines (107 sloc)
3.82 KB
1
pipeline {
2
agent any
3
environment {
4
maintainer = "t"
5
imagename = 'm'
6
tag = 'l'
7
}
8
stages {
25
dir ('tmp') {
26
git([ url: "https://github.internet2.edu/docker/util.git", credentialsId: "jenkins-github-access-token" ])
27
sh 'ls'
28
sh 'mv bin/* ../bin/.'
37
sh '(docker image ls ; echo Destroying ; bin/destroy.sh ; docker image ls) 2>&1 | tee debug' // temporary
38
sh './download-midpoint 2>&1 | tee -a debug'
39
sh 'bin/rebuild.sh 2>&1 | tee -a debug'
40
//sh 'echo Build output ; cat debug'
41
} catch (error) {
42
def error_details = readFile('./debug')
43
def message = "BUILD ERROR: There was a problem building ${imagename}:${tag}. \n\n ${error_details}"
44
sh "rm -f ./debug"
45
handleError(message)
46
}
47
}
48
}
49
}
50
stage ('Test') {
51
steps {
52
script {
53
try {
54
sh 'bin/test.sh 2>&1 | tee debug'
55
sh '(cd demo/simple ; bats tests ) 2>&1 | tee -a debug'
60
def message = "BUILD ERROR: There was a problem testing ${imagename}:${tag}. \n\n ${error_details}"
61
sh "rm -f ./debug"
62
handleError(message)
63
}
64
}
65
}
66
}
67
stage ('Push') {
68
steps {
69
script {
71
def baseImg = docker.build("$maintainer/$imagename")
72
baseImg.push("$tag")
73
}
74
}
81
}
82
}
83
}
84
post {
85
always {
86
echo 'Done Building.'
87
}
88
failure {
89
// slackSend color: 'good', message: "Build failed"
90
handleError("BUILD ERROR: There was a problem building ${maintainer}/${imagename}:${tag}.")
97
def matcher = readFile('common.bash') =~ 'maintainer="(.+)"'
98
matcher ? matcher[0][1] : 'tier'
102
def matcher = readFile('common.bash') =~ 'imagename="(.+)"'
103
matcher ? matcher[0][1] : null
106
def handleError(String message) {
107
echo "${message}"
108
currentBuild.setResult("FAILED")
109
slackSend color: 'danger', message: "${message}"
110
sh 'exit 1'