1
0
ium_444417/Jenkinsfile3
2022-05-03 18:13:53 +02:00

19 lines
490 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('Copy') {
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'
}
}
}