961b01b272
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
23 lines
598 B
Plaintext
23 lines
598 B
Plaintext
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Copy') {
|
|
steps {
|
|
copyArtifacts projectName: 's444417-create-dataset'
|
|
sh 'ls -la'
|
|
sh 'ls -la src'
|
|
}
|
|
}
|
|
stage('archive model') {
|
|
steps {
|
|
|
|
archiveArtifacts '/saved_model/my_model'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
emailext body: "${currentBuild.currentResult}", subject: 's444417-testing build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
} |