Git checkout
This commit is contained in:
parent
607fc36d76
commit
ea7bbc2f05
34
Jenkinsfile
vendored
34
Jenkinsfile
vendored
@ -1,27 +1,28 @@
|
|||||||
node {
|
pipeline {
|
||||||
stage('Preparation') {
|
agent any
|
||||||
properties([
|
parameters{
|
||||||
parameters([
|
password(
|
||||||
|
defaultValue: '',
|
||||||
|
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||||
|
name: 'KAGGLE_SECRET_KEY'
|
||||||
|
)
|
||||||
string(
|
string(
|
||||||
defaultValue: 'h7557h',
|
defaultValue: 'h7557h',
|
||||||
description: 'Kaggle username',
|
description: 'Kaggle username',
|
||||||
name: 'KAGGLE_USERNAME',
|
name: 'KAGGLE_USERNAME'
|
||||||
trim: false
|
)
|
||||||
),
|
|
||||||
password(
|
|
||||||
defaultValue: '',
|
|
||||||
description: 'Kaggle token',
|
|
||||||
name: 'KAGGLE_KEY'
|
|
||||||
),
|
|
||||||
string(
|
string(
|
||||||
defaultValue: '10',
|
defaultValue: '10',
|
||||||
description: 'Cutoff',
|
description: 'Value for head command',
|
||||||
name: 'CUTOFF'
|
name: 'CUTOFF'
|
||||||
)
|
)
|
||||||
])
|
|
||||||
])
|
|
||||||
}
|
}
|
||||||
|
environment {
|
||||||
|
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
|
||||||
|
KAGGLE_KEY="$params.KAGGLE_KEY"
|
||||||
|
CUTOFF="$params.CUTOFF"
|
||||||
|
}
|
||||||
|
stages {
|
||||||
stage('Checkout') {
|
stage('Checkout') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
@ -33,3 +34,4 @@ node {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user