evaluation branch
This commit is contained in:
parent
336fd44524
commit
02da6bf4cd
@ -1,9 +1,24 @@
|
||||
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:11").inside {
|
||||
stage('Test') {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_SELECTOR")
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-training', selector: buildParameter("BUILD_SELECTOR")
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_DATASET")
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-training', selector: buildParameter("BUILD_MODEL")
|
||||
sh '''
|
||||
#!/usr/bin/env bash
|
||||
chmod 777 evaluate_network.sh
|
||||
|
Loading…
Reference in New Issue
Block a user