ium_464914/stats/Jenkinsfile

23 lines
710 B
Plaintext
Raw Normal View History

2024-03-26 20:09:49 +01:00
pipeline {
agent any
parameters {
2024-03-26 20:12:25 +01:00
buildSelector (
2024-03-26 20:09:49 +01:00
defaultSelector: lastSuccessful(),
description: 'Build for copying artifacts',
name: 'BUILD_SELECTOR'
2024-03-26 20:12:25 +01:00
)
2024-03-26 20:09:49 +01:00
}
stages {
stage('Copy Artifacts') {
steps {
2024-03-26 20:14:20 +01:00
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464914-create-dataset', selector: buildParameter('BUILD_SELECTOR')
2024-03-26 20:09:49 +01:00
}
}
stage('Build') {
steps {
2024-03-26 20:17:34 +01:00
sh "bash ./stats/stats_dataset.sh"
2024-03-26 20:09:49 +01:00
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}
}
}
}