docker task 2 try_7

This commit is contained in:
Kamila 2022-04-03 13:08:44 +02:00
parent b2abded930
commit 24c7438f60

5
Jenkinsfile vendored
View File

@ -1,6 +1,9 @@
pipeline {
agent {
dockerfile true
steps {
args '-v $WORKSPACE:/output -u root'
}
}
parameters {
string(
@ -28,7 +31,7 @@ pipeline {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
archiveArtifacts artifacts: 'apps_train.csv, apps_test.csv, apps_validate.csv'
archiveArtifacts artifacts: '*.csv'
}
}
}