ium_444417/Jenkinsfile3
s444417 7b08fea108
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
change agent
2022-05-03 14:53:52 +02:00

18 lines
499 B
Plaintext

pipeline {
agent none
stages {
stage('Copy') {
agent { dockerfile true }
steps {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
archiveArtifacts '/saved_model/my_model'
}
}
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444417-testing build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}