aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2017-07-05 13:30:16 -0400
committerGitHub <noreply@github.com>2017-07-05 13:30:16 -0400
commitef1b5561cadaa5088fc44c8e8a6b716604a52718 (patch)
treeeff5732b7cd53cd06f10325f038de702ba7a9575
parent51d3335c47cbc5ab583263064bee293b89ef166d (diff)
downloadhello_world-ef1b5561cadaa5088fc44c8e8a6b716604a52718.tar.gz
Update Jenkinsfile
-rw-r--r--Jenkinsfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index f8a8441..fcb1e0c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -9,8 +9,10 @@ pipeline {
stages {
stage('Bootstrap') {
steps {
- cinst = new CondaInstaller("${WORKSPACE}/tmp")
- cinst.install()
+ script {
+ cinst = new CondaInstaller("${WORKSPACE}/tmp")
+ cinst.install()
+ }
}
}
stage('Build') {