From 1c99a6ca9f65deca7bde460692ee0deaf145af23 Mon Sep 17 00:00:00 2001 From: "William G. Thompson, Jr" Date: Sat, 20 Apr 2019 13:57:15 -0400 Subject: [PATCH] Update Jenkinsfile added 401 and full_demo --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ccfacfd..e6a8828 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ exceriseSets = [ // 'ex101' : [3, 2], '201' : [1, 1, 1, 1, 1], // 'ex301' : [2, 2, 5, 6], manually built with a single image -// just build 201 for now '401' : [6, 9, 7, 1] + '401' : [6, 9, 7, 1] ] pipeline { @@ -106,6 +106,9 @@ pipeline { baseImg = docker.build("${maintainer}/${imagename}:301.4.1-${tag}", "--no-cache --pull --build-arg VERSION_TAG=${tag} ex301/ex301.4.1") baseImg.push("301.4.1-${tag}") + + baseImg = docker.build("${maintainer}/${imagename}:full_demo-${tag}", "--no-cache --pull --build-arg VERSION_TAG=${tag} full-demo") + baseImg.push("full_demo-${tag}") } } }