Changed Jenkinsfile

This commit is contained in:
s464953 2024-03-23 20:20:23 +01:00
parent 0cda5fe099
commit d2e924c591
1 changed files with 19 additions and 1 deletions

20
Jenkinsfile vendored
View File

@ -2,6 +2,24 @@ pipeline {
agent any
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'
@ -20,4 +38,4 @@ pipeline {
}
}
}
}
}