Add datasetStats

This commit is contained in:
s487179 2023-04-14 23:55:01 +02:00
parent 4d4bb24e54
commit cffa92bfd9
2 changed files with 22 additions and 0 deletions

22
datasetStats/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,22 @@
pipeline {
agent any
parameters {
buildSelector(
defaultSelector: lastSuccesful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Copy artifacts') {
steps {
script {
copyArtifacts(
projectName: 'z-s487179-create-dataset',
selector: "${params.BUILD_SELECTOR}"
)
}
}
}
}
}

View File