From 98a36c6cbc1a8520c3a06082f6ada22d75961ae0 Mon Sep 17 00:00:00 2001 From: Joshua Arulsamy Date: Mon, 10 Aug 2020 02:18:06 -0600 Subject: [PATCH] :bug: Update to support shell scripts for deploy --- Jenkinsfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b08e77a..3968490 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -49,16 +49,12 @@ pipeline { steps { sh ''' source /var/lib/jenkins/miniconda3/etc/profile.d/conda.sh conda activate ${BUILD_TAG} - python deploy/build.py + ./deploy/build.sh ''' } post { always { - // Archive unit tests for the future - archiveArtifacts (allowEmptyArchive: true, - artifacts: 'dist/*whl', - fingerprint: true) - sh 'python deploy/push.py' + sh './deploy/push.sh' } } }