add stats
This commit is contained in:
parent
d6946ea0da
commit
5ef84251e7
43
JenkinsfileStats
Normal file
43
JenkinsfileStats
Normal file
@ -0,0 +1,43 @@
|
||||
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(
|
||||
filter: 'football-semantic-segmentation.zip',
|
||||
fingerprintArtifacts: true,
|
||||
projectName: 'z-s495715-create-dataset',
|
||||
selector: buildSelector
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Execute Script') {
|
||||
steps {
|
||||
sh './calculate_stats.sh'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Archive Results') {
|
||||
steps {
|
||||
archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
0
calculate_stats.sh
Normal file
0
calculate_stats.sh
Normal file
Loading…
Reference in New Issue
Block a user