Updated pipeline to refer to python module correctly

This commit is contained in:
2025-01-20 16:54:00 +00:00
parent de36956cc0
commit 05e132c066
6 changed files with 12 additions and 91 deletions

6
Jenkinsfile vendored
View File

@@ -21,14 +21,14 @@ pipeline {
}
stage("build") {
steps {
sh "build"
sh "python -m build"
sh "grayskull pypi dist/*.tar.gz"
sh "conda-build automlst.engine"
sh "conda-build automlst.engine --output-folder conda-bld"
}
}
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl conda-bld/**/*.conda', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
}
}
stage("publish") {