From 43758c45f8eed9a8172c528ddccc7f3147195a8a Mon Sep 17 00:00:00 2001 From: Harrison Date: Tue, 11 Apr 2023 13:00:04 -0500 Subject: [PATCH] Changed Jenkins pipeline to use mamba --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6fb36f0..c537062 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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") {