added jenkinsfile for stats

This commit is contained in:
Maciej 2021-03-29 03:04:56 +02:00
parent 7e0c7e87c7
commit 9cdfb7d372

16
stats/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's434784-create-dataset',
selector: buildParameter('BUILD_SELECTOR')
filter: "data*",
target: 'Infra']);
}
}
}
}