Add kaggle env support for stats

This commit is contained in:
Wojciech Jarmosz 2021-04-10 22:39:26 +02:00
parent 49e7eb6c25
commit 53d6148dd9

View File

@ -8,6 +8,8 @@ pipeline {
stages { stages {
stage("Clone repo & print stats"){ stage("Clone repo & print stats"){
steps { steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh "python3 script.py" sh "python3 script.py"
copyArtifacts fingerprintArtifacts: true, projectName: 's434704-create-dataset', selector: buildParameter('BUILD_SELECTOR') copyArtifacts fingerprintArtifacts: true, projectName: 's434704-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh "chmod 777 ./count_files_lines.sh" sh "chmod 777 ./count_files_lines.sh"
@ -17,3 +19,4 @@ pipeline {
} }
} }
} }
}