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" + } + } + } +}