ium_444417/Jenkinsfile3
s444417 cda767977a
All checks were successful
s444417-training/pipeline/head This commit looks good
remove agent
2022-04-25 22:44:19 +02:00

16 lines
419 B
Plaintext

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