Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Szymon Parafiński 2022-03-27 22:17:01 +02:00
parent ed43b208b6
commit 325c9c229a

6
Jenkinsfile vendored
View File

@ -2,13 +2,13 @@ pipeline {
agent any agent any
parameters { parameters {
string( string(
defaultValue: 'maciejczajka', defaultValue: 'szymonparafinski',
description: 'Kaggle username', description: 'Kaggle username',
name: 'KAGGLE_USERNAME', name: 'KAGGLE_USERNAME',
trim: false trim: false
) )
password( password(
defaultValue: 'd8f044ad2b96d32372e22f9054c02bb1', defaultValue: 'e76b64bca74a678bf21a6e18430d9b12',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
@ -26,7 +26,7 @@ pipeline {
stages { stages {
stage('Checkout'){ stage('Checkout'){
steps { steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444356', url: 'https://git.wmi.amu.edu.pl/s444356/ium_444356.git']]]) checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444018', url: 'https://git.wmi.amu.edu.pl/s444018/ium_444018.git']]])
} }
} }