add stats

This commit is contained in:
Karol Cyganik 2024-03-26 20:14:31 +01:00
parent d6946ea0da
commit 7c185b12ca
2 changed files with 39 additions and 0 deletions

38
JenkinsfileStats Normal file
View File

@ -0,0 +1,38 @@
pipeline {
agent any
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
}
stages {
stage('Checkout') {
steps {
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s495715/iumKC.git'
}
}
stage('Copy Artifacts') {
steps {
script {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s495715-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
}
stage('Execute Script') {
steps {
sh 'chmod +x calculate_stats.sh && ./calculate_stats.sh'
}
}
stage('Archive Results') {
steps {
archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true
}
}
}
}

1
calculate_stats.sh Normal file
View File

@ -0,0 +1 @@
wc -l calculate_stats.sh > stats.txt