Permalink
Newer
100644
116 lines (111 sloc)
4.53 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/.'
30
// Build and test scripts expect that 'tag' is present in common.bash. This is necessary for both Jenkins and standalone testing.
31
// We don't care if there are more 'tag' assignments there. The latest one wins.
32
sh "echo >> common.bash ; echo \"tag=\\\"${tag}\\\"\" >> common.bash ; echo common.bash ; cat common.bash'
40
// using custom ./build.sh instead of bin/rebuild.sh because the bin/ version does not support building specific tag yet
41
sh './build.sh -r 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
42
} catch (error) {
43
def error_details = readFile('./debug')
44
def message = "BUILD ERROR: There was a problem building ${imagename}:${tag}. \n\n ${error_details}"
45
sh "rm -f ./debug"
46
handleError(message)
47
}
48
}
49
}
50
}
51
stage ('Test') {
52
steps {
53
script {
54
try {
55
sh 'echo Docker containers before root tests ; docker ps -a' // temporary
56
sh 'bin/test.sh 2>&1 | tee debug ; test ${PIPESTATUS[0]} -eq 0'
57
sh 'echo Docker containers before compositions tests ; docker ps -a' // temporary
58
59
sh '(cd demo/simple ; bats tests ) 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
60
sh '(cd demo/shibboleth ; bats tests ) 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
61
sh '(cd demo/postgresql ; bats tests ) 2>&1 | tee -a debug ; test ${PIPESTATUS[0]} -eq 0'
62
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}"
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'