Added testing of pip installation and archiving
All checks were successful
ydeng/bmlsa/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-24 09:40:29 -05:00
parent 59e2dcaa9d
commit f1fe568818

6
Jenkinsfile vendored
View File

@ -20,6 +20,12 @@ pipeline {
stage("test") {
steps {
sh "pip install dist/*.whl"
sh "bmlsa -h"
}
}
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl'
}
}
stage("publish") {