From 3da688fc5f7b96dbbb57d8c32de2c322bcbffbf7 Mon Sep 17 00:00:00 2001 From: Kamil Guttmann Date: Sun, 3 Apr 2022 19:21:35 +0200 Subject: [PATCH] set env manually --- Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7e07875..fba3759 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,11 +39,10 @@ pipeline { } steps { sh "echo $KAGGLE_USERNAME $CUTOFF" - sh "echo ${params.KAGGLE_USERNAME}" - sh "echo $IS_DOCKER" + sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME}" + sh "KAGGLE_KEY=${params.KAGGLE_KEY}" sh "./download_data.sh" - sh "python3 clean_and_split_data.py" - + sh "python3 clean_and_split_data.py" archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true } }