49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
parameters{
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying data artifacts',
|
|
name: 'WHICH_BUILD_DATA'
|
|
)
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying train artifacts',
|
|
name: 'WHICH_BUILD_TRAIN'
|
|
)
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying current project artifacts',
|
|
name: 'WHICH_BUILD_THIS'
|
|
)
|
|
}
|
|
stages {
|
|
stage('copy artifacts')
|
|
{
|
|
steps
|
|
{
|
|
copyArtifacts(fingerprintArtifacts: true, projectName: 's434695-create-dataset', selector: buildParameter('WHICH_BUILD_DATA'))
|
|
copyArtifacts(fingerprintArtifacts: true, projectName: 's434695-training', selector: buildParameter('WHICH_BUILD_TRAIN'))
|
|
copyArtifacts(fingerprintArtifacts: true, optional: true, projectName: 's434695-evaluation', selector: buildParameter('WHICH_BUILD_THIS'))
|
|
}
|
|
}
|
|
stage('evaluate')
|
|
{
|
|
steps
|
|
{
|
|
catchError {
|
|
sh 'python3 evaluate.py'
|
|
}
|
|
}
|
|
}
|
|
stage('send email') {
|
|
steps {
|
|
emailext body: currentBuild.result ?: 'SUCCESS',
|
|
subject: 's434695 - evaluation',
|
|
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
}
|
|
} |