From f1fe568818b093f43948fc06d59ed21da1619b27 Mon Sep 17 00:00:00 2001 From: Harrison Date: Mon, 24 Apr 2023 09:40:29 -0500 Subject: [PATCH] Added testing of pip installation and archiving --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 61d4204..a6244f5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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") {