diff --git a/Jenkinsfile b/Jenkinsfile index c6cee2e..1164be1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -73,8 +73,9 @@ pipeline { } stage('Archive file') { steps { + // Zapisanie zbioru danych i podziaƂu danych na podzbiory jako artfefakty sh "docker cp \$(docker ps -l -q):/app/dane ${env.WORKSPACE}" - archiveArtifacts artifacts: 'output.txt, ./dane/diamonds.csv, ./dane/diamonds_train.csv, ./dane/diamonds_test.csv, ./dane/diamonds_dev.csv', fingerprint: true + archiveArtifacts artifacts: 'output.txt, dane/*.csv', fingerprint: true } } }