Changed to miniforge environment
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit

This commit is contained in:
2025-02-24 17:24:15 +00:00
parent bb1a7dfe38
commit 0e5c323070
3 changed files with 30 additions and 15 deletions

8
Jenkinsfile vendored
View File

@@ -2,19 +2,19 @@ pipeline {
agent {
kubernetes {
cloud 'rsys-devel'
defaultContainer 'pip'
inheritFrom 'pip'
defaultContainer 'miniforge3'
inheritFrom 'miniforge'
}
}
stages {
stage ("install") {
steps {
sh 'conda install python==3.12.7 pip -y -q'
sh 'useradd galaxy -m'
sh 'apt-get update'
sh 'apt-get install sudo -y'
sh 'sudo -u galaxy pip install -r requirements.txt'
sh 'sudo -u galaxy pip install standard-imghdr'
sh 'pip install -r requirements.txt'
}
}
stage ("lint") {