ium_444354/Jenkinsfile3
Adrian Charkiewicz 76f9145ef0
All checks were successful
s444354-training/pipeline/head This commit looks good
s444354-evaluation/pipeline/head This commit looks good
training build not testing in status mail
2022-05-07 11:56:32 +02:00

38 lines
899 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444354-create-dataset'
sh 'python3 ./pytorch/pytorch.py'
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: 'pytorch/result.txt',
allowEmptyArchive: true
}
}
stage('Starting eval job') {
steps {
build job: 's444354-evaluation/master', wait: false
}
}
}
options {
copyArtifactPermission('s444354-evaluation');
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444354-training build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}