From 4bcbfa0c6a7ffea3782abbec425914ef0287cda3 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 24 Jan 2025 19:33:27 +0000 Subject: [PATCH] Began adding conda steps for automatic PRs to Bioconda --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index fb4051e..ff0dbb6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,6 +48,9 @@ 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' + } } } }