From bd624b380f8981a784e2bfcde0cbb5b19483e8c6 Mon Sep 17 00:00:00 2001 From: Adrian Charkiewicz Date: Sun, 15 May 2022 22:18:37 +0200 Subject: [PATCH] python not found --- Jenkinsfile_artifact | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile_artifact b/Jenkinsfile_artifact index 0f33409..aeb8b97 100644 --- a/Jenkinsfile_artifact +++ b/Jenkinsfile_artifact @@ -16,7 +16,7 @@ pipeline { steps { copyArtifacts filter: 'mlruns.tar.gz', projectName: 's449288-training/master', selector: buildParameter('BUILD_SELECTOR') sh 'mkdir -p mlrunsArtifact && tar xzf mlruns.tar.gz -C mlrunsArtifact --strip-components 1' - sh "python ./predictArtifact.py" + sh 'python3 ./predictArtifact.py' } } }