This commit is contained in:
parent
5934c9b496
commit
b0f4e521c2
@ -19,7 +19,9 @@ node {
|
||||
|
||||
}
|
||||
stage('Clone repo') {
|
||||
try {
|
||||
docker.image("karopa/ium:20").inside {
|
||||
|
||||
stage('Test') {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/evaluation']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_DATASET")
|
||||
@ -34,6 +36,17 @@ node {
|
||||
archiveArtifacts 'rmse.txt'
|
||||
archiveArtifacts 'evaluation.png'
|
||||
}
|
||||
def data = readFile(file: 'rmse.txt').split("/n")
|
||||
emailext body: 'Successful evaluation ${data[data.size()]}',
|
||||
subject: "s434765",
|
||||
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
emailext body: 'Failed evaluation',
|
||||
subject: "s434765",
|
||||
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
||||
throw e
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user