Removed test installation step from CI

This commit is contained in:
Harrison Deng 2025-01-10 17:28:25 +00:00
parent 5449ae0c68
commit 484e31879e

6
Jenkinsfile vendored
View File

@ -24,12 +24,6 @@ pipeline {
sh "python -m build" sh "python -m build"
} }
} }
stage("test installation") {
steps {
sh "python -m pip install dist/*.whl --force-reinstall"
sh "automlst -h"
}
}
stage("archive") { stage("archive") {
steps { steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true