brakująca sekcja

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

4
Jenkinsfile vendored
View File

@ -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'
} }
} }
} }
}