diff options
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 6 |
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') { |