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 { agent {
docker { image 'adnovac/ium_s434760:latest' } docker { image 'adnovac/ium_s434760:latest' }
} }
parameters{ parameters {
string( string(
defaultValue: 'annadnowak', defaultValue: 'annadnowak',
description: 'Kaggle username', 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', 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'
) )
}
stages {
stage('docker: Download artifacts') stage('docker: Download artifacts')
{ {
steps { steps {
@ -23,10 +25,10 @@ pipeline {
} }
} }
} }
}
stage('archive artifacts') { stage('archive artifacts') {
steps { steps {
archiveArtifacts 'test.csv,data_shuf.csv,validation.csv,train.csv,header.csv' archiveArtifacts 'test.csv,data_shuf.csv,validation.csv,train.csv,header.csv'
} }
} }
}
} }