From 4601ce6d5781e49da07eace7cc249cc26126f82d Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewski Date: Fri, 1 Apr 2022 22:58:15 +0200 Subject: [PATCH] Add stats jenkinsfile --- Jenkinsfile-stats | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Jenkinsfile-stats diff --git a/Jenkinsfile-stats b/Jenkinsfile-stats new file mode 100644 index 0000000..398c24e --- /dev/null +++ b/Jenkinsfile-stats @@ -0,0 +1,16 @@ +pipeline { + agent any + stages { + stage('Get arifacts') { + steps { + copyArtifacts fingerprintArtifacts: true, projectName: 's444409-create-dataset', selector: lastSuccessful() + } + } + stage('Show stats') { + steps { + sh "chmod u+x ./stats.sh" + sh "./stats.sh" + } + } + } +}