Update 'Jenkinsfile'

This commit is contained in:
Wojciech Mikołajski 2023-04-14 03:22:58 +02:00
parent 24ff357672
commit 3b4e88f9ca

21
Jenkinsfile vendored
View File

@ -2,12 +2,17 @@ pipeline {
agent any agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania //Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters { parameters {
string ( string(
defaultValue: 'Hellllo World!', defaultValue: 'login',
description: 'Tekst, którym chcesz przywitać świat', description: 'Kaggle username',
name: 'INPUT_TEXT', name: 'KAGGLE_USERNAME',
trim: false 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 { stages {
stage('checkout: Check out from version control') { stage('checkout: Check out from version control') {
@ -18,7 +23,9 @@ pipeline {
} }
stage('sh: Shell Script') { stage('sh: Shell Script') {
steps { steps {
sh 'python3 create_dataset.py' withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
} }
} }
} }