This commit is contained in:
s444417 2022-03-24 19:05:28 +01:00
parent 9938eedeaa
commit e248f45981

28
Jenkinsfile vendored
View File

@ -1,18 +1,24 @@
pipeline { pipeline {
agent any agent any
properties([ options {
parameters( parameters{
[password(defaultValue: '', password(
defaultValue: '',
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'
string(defaultValue: 'mikolaj2',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'),
string(description: 'Value for head command',
name: 'CUTOFF')]
), ),
pipelineTriggers([[$class: 'GogsTrigger']]) string(
]) defaultValue: 'mikolaj2',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'
),
string(
defaultValue: '',
description: 'Value for head command',
name: 'CUTOFF'
)
}
}
environment { environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME" KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
KAGGLE_KEY="$params.KAGGLE_KEY" KAGGLE_KEY="$params.KAGGLE_KEY"