brakująca sekcja

This commit is contained in:
Anna Nowak 2021-04-11 22:25:07 +02:00
parent 04b938b22e
commit cf04b757cc

6
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ pipeline {
agent {
docker { image 'adnovac/ium_s434760:latest' }
}
parameters{
parameters {
string(
defaultValue: 'annadnowak',
description: 'Kaggle username',
@ -14,6 +14,8 @@ pipeline {
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
stages {
stage('docker: Download artifacts')
{
steps {
@ -23,10 +25,10 @@ pipeline {
}
}
}
}
stage('archive artifacts') {
steps {
archiveArtifacts 'test.csv,data_shuf.csv,validation.csv,train.csv,header.csv'
}
}
}
}