From f94acb3e46bdba60f7b63b0ffd2df42775c9c445 Mon Sep 17 00:00:00 2001 From: s464953 Date: Sat, 23 Mar 2024 20:22:37 +0100 Subject: [PATCH] Changed Jenkinsfile --- Jenkinsfile | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a1dbcbc..41836a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,25 +1,21 @@ pipeline { agent any + parameters { + string( + defaultValue: 'tomaszzitkiewicz', + 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('Preparation') { - properties([ - parameters([ - string( - defaultValue: 'tomaszzitkiewicz', - 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' - ) - ]) - ]) - } - stage('Clone Repository') { steps { git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git' @@ -38,4 +34,4 @@ pipeline { } } } -} \ No newline at end of file +}