Added build step to CI
Some checks failed
MLSTMyFASTA/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2025-01-03 19:40:11 +00:00
parent 4061c3d5a0
commit 35ae4cd6c8

3
Jenkinsfile vendored
View File

@ -19,6 +19,9 @@ pipeline {
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results.xml', stopProcessingIfError: true)]
}
}
stage("build") {
sh "python3.11 -m build"
}
stage("test installation") {
steps {
sh "python3.11 -m pip install dist/*.whl --force-reinstall"