IUM_s464980/stats/Jenkinsfile

29 lines
863 B
Plaintext
Raw Normal View History

2024-03-26 19:05:13 +01:00
pipeline {
agent any
parameters {
buildSelector (
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Checkout repository') {
steps {
checkout scm
2024-03-26 19:06:29 +01:00
}
2024-03-26 19:05:13 +01:00
}
stage('Copy artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464980-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('Get stats') {
steps {
2024-03-26 19:07:55 +01:00
sh "chmod +x stats/get_stats.sh"
2024-03-26 19:07:07 +01:00
sh "./stats/get_stats.sh"
2024-03-26 19:05:13 +01:00
archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true
}
}
}
}