Updated Jenkinsfile to use new scripts

This commit is contained in:
Kamil Guttmann 2022-04-03 18:05:05 +02:00
parent cccbe68206
commit f73705bb68

3
Jenkinsfile vendored
View File

@ -34,7 +34,8 @@ pipeline {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}",
"CUTOFF=${params.CUTOFF}"]) {
sh "./download_data.sh $CUTOFF"
sh "./download_data.sh"
sh "python3 clean_and_split_data.py"
archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
}
}