docker task 2 try_10

This commit is contained in:
Kamila 2022-04-03 13:24:49 +02:00
parent 4204e871f5
commit 30b5570bf2
1 changed files with 2 additions and 5 deletions

7
Jenkinsfile vendored
View File

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