autoBIGS.galaxy/Jenkinsfile
Harrison Deng bb1a7dfe38
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
Changed all commands to be run by the galaxy user
2025-02-24 15:28:31 +00:00

33 lines
1.1 KiB
Groovy

pipeline {
agent {
kubernetes {
cloud 'rsys-devel'
defaultContainer 'pip'
inheritFrom 'pip'
}
}
stages {
stage ("install") {
steps {
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'
}
}
stage ("lint") {
steps {
sh "sudo -u galaxy planemo lint autobigs-cli.xml"
}
}
stage ("test") {
steps {
sh 'sudo -u galaxy mkdir test_results'
sh "sudo -u galaxy planemo test autobigs-cli.xml --test_output_junit test_results/junit_results.xml --test_output_json test_results/results.json --test_output test_results/human.html"
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results/junit_report.xml', stopProcessingIfError: true)]
}
}
}
}