set env manually

This commit is contained in:
Kamil Guttmann 2022-04-03 19:21:35 +02:00
parent fa81b8ad01
commit 3da688fc5f

7
Jenkinsfile vendored
View File

@ -39,11 +39,10 @@ pipeline {
}
steps {
sh "echo $KAGGLE_USERNAME $CUTOFF"
sh "echo ${params.KAGGLE_USERNAME}"
sh "echo $IS_DOCKER"
sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME}"
sh "KAGGLE_KEY=${params.KAGGLE_KEY}"
sh "./download_data.sh"
sh "python3 clean_and_split_data.py"
sh "python3 clean_and_split_data.py"
archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
}
}