Removed conda environment step for now

This commit is contained in:
Harrison Deng 2025-01-24 21:43:55 +00:00
parent 4bcbfa0c6a
commit 6d0157581f

3
Jenkinsfile vendored
View File

@ -48,9 +48,6 @@ pipeline {
} }
steps { steps {
sh returnStatus: true, script: 'python -m twine upload -u __token__ -p ${TOKEN} --non-interactive --disable-progress-bar --verbose dist/*' 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'
}
} }
} }
} }