From feea44b175d527f18c7fd57116037c3084cd47ce Mon Sep 17 00:00:00 2001 From: v1j1 Date: Thu, 31 Oct 2019 15:46:56 -0400 Subject: [PATCH] adding artifact --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8a517b6..95050e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,13 +41,13 @@ agent any } steps { sh ''' - python setup.py bdist_wheel + python setup.py bdist_wheel ''' } post { always { // Archive unit tests for the future - archiveArtifacts allowEmptyArchive: true, artifacts: 'dist/*whl', fingerprint: true) + archiveArtifacts allowEmptyArchive: true, artifacts: 'dist/*whl', fingerprint: true } } }