diff --git a/Jenkinsfile b/Jenkinsfile index e700ed6..c9379ac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { } steps { sh "chmod +x ./IUM_05-split.py" - sh "python ./IUM_05-split.py" + sh "python3 ./IUM_05-split.py" archiveArtifacts artifacts: 'beer_reviews.csv,beer_reviews_train.csv,beer_reviews_test.csv', onlyIfSuccessful: true } } @@ -43,8 +43,8 @@ pipeline { steps { sh "chmod +x ./IUM_05-model.py" sh "chmod +x ./IUM_05-predict.py" - sh "python ./IUM_05-model.py" - sh "python ./IUM_05-predict.py" + sh "python3 ./IUM_05-model.py" + sh "python3 ./IUM_05-predict.py" archiveArtifacts artifacts: 'beer_review_sentiment_model.h5,beer_review_sentiment_predictions.csv', onlyIfSuccessful: true } }