From 6d0157581f24f6f6ab881d974b8b57ae937bfd2a Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 24 Jan 2025 21:43:55 +0000 Subject: [PATCH] Removed conda environment step for now --- Jenkinsfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ff0dbb6..fb4051e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,9 +48,6 @@ pipeline { } steps { sh returnStatus: true, script: 'python -m twine upload -u __token__ -p ${TOKEN} --non-interactive --disable-progress-bar --verbose dist/*' - container('miniforge3') { - sh 'conda install python3.10 bioconda::bioconda-utils' - } } } }