Conda environment creation now has '--force' for pipeline
Some checks failed
ydeng/bmlsa/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2023-04-28 10:58:31 -05:00
parent 515c130146
commit 51c2bd1f7b

2
Jenkinsfile vendored
View File

@ -8,7 +8,7 @@ pipeline {
}
stage("install") {
steps {
sh 'mamba env update --file environment.yml'
sh 'mamba env create --force --file environment.yml'
sh 'echo "mamba activate bmlsa" >> ~/.bashrc'
}
}