ium_464914/stats/Jenkinsfile
Alicja Szulecka ebef6c12cc add stats
2024-04-02 22:35:43 +02:00

27 lines
785 B
Groovy

pipeline {
agent {
docker {
image 'aliszu1/ium:1.0'
}
}
parameters {
buildSelector (
defaultSelector: lastSuccessful(),
description: 'Build for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Copy Artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464914-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('Build') {
steps {
sh "python ./get_stats.py"
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}
}
}
}