fix 11
This commit is contained in:
parent
9938eedeaa
commit
e248f45981
32
Jenkinsfile
vendored
32
Jenkinsfile
vendored
@ -1,18 +1,24 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
properties([
|
options {
|
||||||
parameters(
|
parameters{
|
||||||
[password(defaultValue: '',
|
password(
|
||||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
defaultValue: '',
|
||||||
name: 'KAGGLE_KEY'),
|
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||||
string(defaultValue: 'mikolaj2',
|
name: 'KAGGLE_KEY'
|
||||||
description: 'Kaggle username',
|
),
|
||||||
name: 'KAGGLE_USERNAME'),
|
string(
|
||||||
string(description: 'Value for head command',
|
defaultValue: 'mikolaj2',
|
||||||
name: 'CUTOFF')]
|
description: 'Kaggle username',
|
||||||
),
|
name: 'KAGGLE_USERNAME'
|
||||||
pipelineTriggers([[$class: 'GogsTrigger']])
|
),
|
||||||
])
|
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"
|
||||||
|
Loading…
Reference in New Issue
Block a user