Changed Jenkins pipeline to use mamba
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-11 13:00:04 -05:00
parent f74fea0b24
commit 43758c45f8

4
Jenkinsfile vendored
View File

@ -3,8 +3,8 @@ pipeline {
stages {
stage("install") {
steps {
sh 'conda env update --file environment.yml'
sh 'echo "conda activate splitmsa" >> ~/.bashrc'
sh 'mamba env update --file environment.yml'
sh 'echo "mamba activate splitmsa" >> ~/.bashrc'
}
}
stage("build") {