fix4
This commit is contained in:
parent
a50687a7ec
commit
7a2ebe1925
46
Jenkinsfile
vendored
46
Jenkinsfile
vendored
@ -1,28 +1,28 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
parameters([
|
parameters {
|
||||||
string(
|
string(
|
||||||
defaultValue: 'mikolaj2',
|
defaultValue: 'mikolaj2',
|
||||||
description: 'Kaggle username',
|
description: 'Kaggle username',
|
||||||
name: 'KAGGLE_USERNAME',
|
name: 'KAGGLE_USERNAME',
|
||||||
trim: false
|
trim: false
|
||||||
),
|
),
|
||||||
password(
|
password(
|
||||||
defaultValue: '',
|
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(
|
string(
|
||||||
defaultValue: '',
|
defaultValue: '',
|
||||||
description: 'Value for head command',
|
description: 'Value for head command',
|
||||||
name: 'CUTOFF'
|
name: 'CUTOFF'
|
||||||
)
|
)
|
||||||
])
|
environment {
|
||||||
environment {
|
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
|
||||||
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
|
KAGGLE_KEY="$params.KAGGLE_KEY"
|
||||||
KAGGLE_KEY="$params.KAGGLE_KEY"
|
CUTOFF="$params.CUTOFF"
|
||||||
CUTOFF="$params.CUTOFF"
|
}
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage("Check out from version control") {
|
stage("Check out from version control") {
|
||||||
steps {
|
steps {
|
||||||
|
Loading…
Reference in New Issue
Block a user