aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to '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') {