node { stage('Preparation') { properties([ parameters([ buildSelector(defaultSelector: lastSuccessful(), description: 'Which build to use for copying datasets', name: 'BUILD_DATASET'), buildSelector(defaultSelector: lastSuccessful(), description: 'Which build to use for copying model', name: 'BUILD_MODEL') ]) ] ) } stage('Clone repo') { docker.image("karopa/ium:12").inside { stage('Test') { copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_DATASET") copyArtifacts fingerprintArtifacts: true, projectName: 's434765-training/master/', selector: buildParameter("BUILD_MODEL") sh ''' #!/usr/bin/env bash chmod 777 evaluate_network.py python3 evaluate_network.py | tee output.txt ''' archiveArtifacts 'output.txt' } } } }