ium_444417/Jenkinsfile3
s444417 7b0e42a67b
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
add email
2022-04-25 22:42:35 +02:00

18 lines
461 B
Plaintext

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