17d23ddd14
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
34 lines
900 B
Plaintext
34 lines
900 B
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
stages {
|
|
stage('Copy') {
|
|
steps {
|
|
copyArtifacts projectName: 's444417-create-dataset'
|
|
sh 'ls -la'
|
|
sh 'python3 ./src/trainScript.py 6'
|
|
}
|
|
}
|
|
stage('Archive') {
|
|
steps {
|
|
dir('saved_model') {
|
|
archiveArtifacts artifacts: '**/**'
|
|
}
|
|
}
|
|
}
|
|
options {
|
|
copyArtifactPermission('s444417-evaluation')
|
|
}
|
|
stage('Starting eval job') {
|
|
steps {
|
|
build job: 's444417-evaluation/master', wait: false
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
emailext body: "${currentBuild.currentResult}", subject: 's444417-testing build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
} |