Changed Jenkinsfile

This commit is contained in:
s464953 2024-03-23 20:22:37 +01:00
parent d2e924c591
commit f94acb3e46

32
Jenkinsfile vendored
View File

@ -1,25 +1,21 @@
pipeline { pipeline {
agent any agent any
stages { parameters {
stage('Preparation') { string(
properties([ defaultValue: 'tomaszzitkiewicz',
parameters([ description: 'Kaggle username',
string( name: 'KAGGLE_USERNAME',
defaultValue: 'tomaszzitkiewicz', trim: false
description: 'Kaggle username', )
name: 'KAGGLE_USERNAME', password(
trim: false defaultValue: '',
), description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
password( name: 'KAGGLE_KEY'
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('Clone Repository') { stage('Clone Repository') {
steps { steps {
git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git' git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git'