Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding place for 301 to get built.
John Gasper committed Oct 10, 2018
1 parent 8521290 commit 1b4d90a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Jenkinsfile
@@ -16,7 +16,7 @@
exceriseSets = [
// 'ex101' : [3, 2],
'ex201' : [1, 1, 1, 1, 1],
// 'ex301' : [2, 2, 5, 6],
// 'ex301' : [2, 2, 5, 6], manually built with a single image
'ex401' : [6, 9, 7, 1]
]

@@ -77,7 +77,7 @@ pipeline {
}
}
}
stage('Build Others') {
stage('Build exceriseSets') {
steps {
script {
docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-${maintainer}") {
@@ -95,6 +95,16 @@ pipeline {
}
}
}
stage('Build Oddballs') {
steps {
script {
docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-${maintainer}") {
def baseImg = docker.build("${maintainer}/${imagename}:ex301.4.1", "--no-cache --pull ex301/ex301.4.1")
baseImg.push("ex301.4.1")
}
}
}
}
stage('Notify') {
steps{
echo "$maintainer"

0 comments on commit 1b4d90a

Please sign in to comment.