copy artifact

This commit is contained in:
s444417 2022-03-24 22:38:56 +01:00
parent 20c2599520
commit a552b0e70a

18
Jenkinsfile vendored
View File

@ -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 {