diff --git a/Jenkinsfile b/Jenkinsfile index 9098ef2..85899ee 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,7 +38,7 @@ pipeline { steps { sh "chmod +x ./get_dataset.py" - sh "python3 ./get_dataset.py ${params.KAGGLE_USERNAME} ${params.KAGGLE_KEY}" + sh "python ./get_dataset.py ${params.KAGGLE_USERNAME} ${params.KAGGLE_KEY}" archiveArtifacts artifacts: 'dataset.csv,df_train.csv,df_test.csv', onlyIfSuccessful: true } } diff --git a/stats/Jenkinsfile b/stats/Jenkinsfile index 4b6edff..81df608 100644 --- a/stats/Jenkinsfile +++ b/stats/Jenkinsfile @@ -25,7 +25,7 @@ pipeline { stage('Get stats') { steps { sh "chmod +x get_stats.py" - sh "python3 ./get_stats.py" + sh "python ./get_stats.py" archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true } }