7b0e42a67b
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
18 lines
461 B
Plaintext
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'
|
|
}
|
|
}
|
|
}
|
|
} |