.
This commit is contained in:
parent
bdbde335e9
commit
2bdbb4c1c3
@ -1,35 +1,30 @@
|
||||
pipeline {
|
||||
agent any;
|
||||
|
||||
parameters {
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying data artifacts',
|
||||
name: 'BUILD_SELECTOR_DATASET'
|
||||
parameters{
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'BUILD_SELECTOR'
|
||||
)
|
||||
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
|
||||
}
|
||||
|
||||
stages {
|
||||
|
||||
stage('copy-artifacts')
|
||||
{
|
||||
steps
|
||||
{
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434784-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||||
}
|
||||
}
|
||||
}
|
||||
stages{
|
||||
stage('copy-artifacts') {
|
||||
steps {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434784-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||||
}
|
||||
}
|
||||
|
||||
stage('evaluation') {
|
||||
steps {
|
||||
script {
|
||||
script {
|
||||
def image = docker.build('dock')
|
||||
image.inside{
|
||||
sh 'chmod +x evaluation.py'
|
||||
sh 'python3 evaluation.py'
|
||||
image.inside{
|
||||
sh 'chmod +x evaluation.py'
|
||||
sh 'python3 evaluation.py'
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user