This commit is contained in:
Sheaza 2024-04-02 20:09:12 +02:00
parent 43229c2ea9
commit f5959bb797
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -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
}
}

2
stats/Jenkinsfile vendored
View File

@ -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
}
}