.
Some checks failed
s434784-evaluation/pipeline/head There was a failure building this commit
s434784-training/pipeline/head This commit looks good

This commit is contained in:
Maciej Sobkowiak 2021-05-16 21:35:29 +02:00
parent bdbde335e9
commit 2bdbb4c1c3

View File

@ -1,21 +1,15 @@
pipeline { pipeline {
agent any; agent any;
parameters{ parameters{
buildSelector( buildSelector(
defaultSelector: lastSuccessful(), defaultSelector: lastSuccessful(),
description: 'Which build to use for copying data artifacts', description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR_DATASET' name: 'BUILD_SELECTOR'
) )
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
} }
stages{ stages{
stage('copy-artifacts') {
stage('copy-artifacts') steps {
{
steps
{
copyArtifacts fingerprintArtifacts: true, projectName: 's434784-create-dataset', selector: buildParameter('BUILD_SELECTOR') copyArtifacts fingerprintArtifacts: true, projectName: 's434784-create-dataset', selector: buildParameter('BUILD_SELECTOR')
} }
} }
@ -27,6 +21,7 @@ pipeline {
image.inside{ image.inside{
sh 'chmod +x evaluation.py' sh 'chmod +x evaluation.py'
sh 'python3 evaluation.py' sh 'python3 evaluation.py'
} }
} }
} }