8cca2125c9
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
22 lines
617 B
Plaintext
22 lines
617 B
Plaintext
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Copy') {
|
|
steps {
|
|
copyArtifacts projectName: 's444417-training'
|
|
sh 'python3 evalScript.py'
|
|
archiveArtifacts 'trainResults.csv'
|
|
}
|
|
}
|
|
stage ('Starting eval job') {
|
|
steps {
|
|
build job: 's444417-evaluation/master', wait: true
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
emailext body: "${currentBuild.currentResult}", subject: 's444417-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
} |