ium_444417/Jenkinsfile3
s444417 8cca2125c9
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
eval script
2022-05-03 21:45:42 +02:00

23 lines
618 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
sg 'python3 ./src/trainScript.py 6'
archiveArtifacts 'saved_model/MyModel_tf/*'
}
}
}
options {
copyArtifactPermission('s444417-evaluation');
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444417-testing build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}