From b7214265899f7eb6f5956128b21670bad7ee2e33 Mon Sep 17 00:00:00 2001 From: Daniel Porzucek Date: Wed, 20 Mar 2024 14:57:04 +0100 Subject: [PATCH] only checkout and ls --- Jenkinsfile | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b3f6ad6..4747562 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,18 +1,5 @@ pipeline { agent any - parameters { - string ( - defaultValue: 'worldwidepaniel', - description: 'Kaggle username', - name: 'KAGGLE_USERNAME', - trim: false - ), - password( - defaultValue: '', - description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', - name: 'KAGGLE_KEY' - ) - } stages { stage('Checkout') { steps { @@ -20,11 +7,5 @@ pipeline { sh 'ls -las' } } - stage('Download dataset and manipulate dataset') { - withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", - "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { - sh "./data_download.sh" - } - } } }