Permalink
Newer
100644
116 lines (110 sloc)
4.3 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 '(ls -l ; docker ps -a ; 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 ; test ${PIPESTATUS[0]} -eq 0'
39
sh 'bin/rebuild.sh 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
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 'echo Docker containers before root tests ; docker ps -a' // temporary
55
sh 'bin/test.sh 2>&1 | tee debug ; test ${PIPESTATUS[0]} -eq 0'
56
sh 'echo Docker containers before compositions tests ; docker ps -a' // temporary
57
58
//sh '(cd demo/simple ; bats tests ) 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
59
//sh '(cd demo/shibboleth ; bats tests ) 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
60
//sh '(cd demo/complex ; bats tests ) 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
65
def message = "BUILD ERROR: There was a problem testing ${imagename}:${tag}. \n\n ${error_details}"
66
sh "rm -f ./debug"
67
handleError(message)
68
}
69
}
70
}
71
}
72
stage ('Push') {
73
steps {
74
script {
76
def baseImg = docker.build("$maintainer/$imagename")
77
baseImg.push("$tag")
78
}
79
}
86
}
87
}
88
}
89
post {
90
always {
91
echo 'Done Building.'
92
}
93
failure {
94
// slackSend color: 'good', message: "Build failed"
95
handleError("BUILD ERROR: There was a problem building ${maintainer}/${imagename}:${tag}.")
102
def matcher = readFile('common.bash') =~ 'maintainer="(.+)"'
103
matcher ? matcher[0][1] : 'tier'
107
def matcher = readFile('common.bash') =~ 'imagename="(.+)"'
108
matcher ? matcher[0][1] : null
111
def handleError(String message) {
112
echo "${message}"
113
currentBuild.setResult("FAILED")
114
slackSend color: 'danger', message: "${message}"
115
sh 'exit 1'