a4ef4af182
Some checks failed
s444354-evaluation/pipeline/head There was a failure building this commit
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
pipeline {
|
|
agent {
|
|
docker { image 's444507_create_dataset_image:latest' }
|
|
}
|
|
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('Get arifacts') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
copyArtifacts fingerprintArtifacts: true, projectName: '444507-training/${BRANCH}', selector: buildParameter('BUILD_SELECTOR')
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-evaluation/master', selector: buildParameter('BUILD_SELECTOR'), optional: true
|
|
}
|
|
}
|
|
stage('Run evaluation') {
|
|
steps {
|
|
sh "python3 ./lab06_evaluation.py ${currentBuild.number}"
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
success {
|
|
archiveArtifacts artifacts: 'metrics.*', followSymlinks: false
|
|
}
|
|
always {
|
|
emailext body: "${currentBuild.currentResult}", subject: 's444507-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
} |