This commit is contained in:
s444501 2022-04-02 19:05:07 +02:00
parent 8f9b5b71df
commit fb76d4302e

6
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
pipeline {
agent any
agent {dockerfile true}
parameters {
string(
@ -34,8 +34,8 @@ pipeline {
steps {
sh 'chmod u+x download.sh'
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}","KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}"]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh './download.sh'
// sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
// sh './download.sh'
}
archiveArtifacts artifacts: 'd_test.csv, d_dev.csv, d_train.csv'
}