ium_434804/Jenkinsfile_evaluation

55 lines
2.0 KiB
Plaintext
Raw Normal View History

2021-05-10 21:11:07 +02:00
pipeline {
agent {dockerfile true}
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD_TRAIN'
)
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD_EVAL'
)
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
2021-05-10 21:11:07 +02:00
}
stages {
stage('copyArtifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434804-create-dataset', selector: buildParameter('BUILD_SELECTOR')
copyArtifacts fingerprintArtifacts: true, projectName: 's434804-training/master', selector: buildParameter('WHICH_BUILD_TRAIN')
copyArtifacts optional: true, fingerprintArtifacts: true, projectName: 's434804-evaluation/master', selector: buildParameter('WHICH_BUILD_EVAL')
2021-05-10 21:11:07 +02:00
}
}
stage('evaluation') {
steps {
sh 'buildNumber=$(echo $BUILD_NUMBER)'
2021-05-10 21:11:07 +02:00
sh 'chmod +x tensor-eval.py'
2021-05-14 14:06:03 +02:00
sh 'python3 "tensor-eval.py $BUILD_NUMBER" >> evaluation.txt'
sh 'python3 tensor-plot.py'
2021-05-10 21:11:07 +02:00
}
}
stage('archiveArtifacts') {
steps{
archiveArtifacts 'evaluation.txt'
archiveArtifacts 'evaluation_plot.png'
2021-05-10 21:11:07 +02:00
}
}
}
post {
success {
mail body: 'SUCCESS', subject: 's434804', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE', subject: 's434804', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
changed {
mail body: 'CHANGED', subject: 's434804', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
2021-05-10 21:11:07 +02:00
}