From 23a58996640946722856df018c122f0ca3499268 Mon Sep 17 00:00:00 2001 From: Robert Bendun Date: Wed, 29 Mar 2023 01:52:40 +0200 Subject: [PATCH] stats.txt --- stats.jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stats.jenkinsfile b/stats.jenkinsfile index f8dffed..d870c8b 100644 --- a/stats.jenkinsfile +++ b/stats.jenkinsfile @@ -2,7 +2,8 @@ node { stage('Build') { checkout([$class: 'GitSCM', branches: [[name: 'ztm']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]]) copyArtifacts filter: 'train.csv', fingerprintArtifacts: true, projectName: 's452639-create-dataset', selector: buildParameter('BUILD_SELECTOR') - sh './stats.sh' + sh './stats.sh > stats.txt' + archiveArtifacts artifacts: 'stats.txt', followSymlinks: false } }