diff --git a/datasetStats/Jenkinsfile b/datasetStats/Jenkinsfile new file mode 100644 index 0000000..1ef2e5b --- /dev/null +++ b/datasetStats/Jenkinsfile @@ -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}" + ) + } + } + } + } +} \ No newline at end of file diff --git a/datasetStats/datasetStats.sh b/datasetStats/datasetStats.sh new file mode 100644 index 0000000..e69de29