copy artifact
This commit is contained in:
parent
20c2599520
commit
a552b0e70a
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
@ -1,21 +1,27 @@
|
||||
pipeline {
|
||||
agent any
|
||||
parameters{
|
||||
password(
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
string(
|
||||
defaultValue: 'mikolaj2',
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME'
|
||||
)
|
||||
)
|
||||
string(
|
||||
defaultValue: '20',
|
||||
description: 'Value for head command',
|
||||
name: 'CUTOFF'
|
||||
)
|
||||
)
|
||||
password(
|
||||
defaultValue: '',
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
}
|
||||
|
||||
environment {
|
||||
KAGGLE_KEY="$params.KAGGLE_KEY"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage("Check out from version control") {
|
||||
steps {
|
||||
|
Loading…
Reference in New Issue
Block a user