From 5ff2a192ecfa52ffcdc1617a07e9ee3f06a7e0bd Mon Sep 17 00:00:00 2001 From: Piv <18462828+Piv200@users.noreply.github.com> Date: Thu, 30 Jul 2020 20:21:53 +0930 Subject: [PATCH] Use python directory to build --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b8be4a6..aceff7d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,8 +8,9 @@ pipeline { stages { stage('Build') { steps { - sh 'cd python' - sh 'python setup.py bdist_wheel' + dir('python') { + sh 'python setup.py bdist_wheel' + } } }