From e9f058e426ac27673c172aafa75cabe0868132e0 Mon Sep 17 00:00:00 2001 From: s444501 Date: Sat, 2 Apr 2022 19:45:22 +0200 Subject: [PATCH] test --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8ca124a..b4ac240 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent {dockerfile {additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} -t zadanie"}} + agent any parameters { string( @@ -35,9 +35,7 @@ pipeline { 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 'ls' - sh 'python3 ./ium-data.py' + sh './download.sh' } archiveArtifacts artifacts: 'd_test.csv, d_dev.csv, d_train.csv' }