This commit is contained in:
s444417 2022-03-24 19:03:02 +01:00
parent 6afb3cf0a6
commit 9938eedeaa

31
Jenkinsfile vendored
View File

@ -1,24 +1,17 @@
pipeline { pipeline {
agent any agent any
options([ properties([
parameters[( parameters(
string( [password(defaultValue: '',
defaultValue: 'mikolaj2', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
description: 'Kaggle username', name: 'KAGGLE_KEY'),
name: 'KAGGLE_USERNAME', string(defaultValue: 'mikolaj2',
trim: false description: 'Kaggle username',
), name: 'KAGGLE_USERNAME'),
password( string(description: 'Value for head command',
defaultValue: '', name: 'CUTOFF')]
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', ),
name: 'KAGGLE_KEY' pipelineTriggers([[$class: 'GogsTrigger']])
),
string(
defaultValue: '',
description: 'Value for head command',
name: 'CUTOFF'
)
)]
]) ])
environment { environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME" KAGGLE_USERNAME="$params.KAGGLE_USERNAME"