ium_444417/Jenkinsfile3
s444417 9151f22837
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
readme
2022-05-04 18:39:09 +02:00

41 lines
1.0 KiB
Plaintext

pipeline {
agent {
dockerfile true
}
parameters{
string(
defaultValue: '5',
description: 'Epoch number',
name: 'EPOCH_NUMBER'
)
}
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
sh 'python3 ./src/trainScript.py ${params.EPOCH_NUMBER}'
}
}
stage('Archive') {
steps {
dir('saved_model') {
archiveArtifacts artifacts: '**/**'
}
}
}
stage('Starting eval job') {
steps {
build job: 's444417-evaluation/master', wait: false
}
}
}
options {
copyArtifactPermission('s444417-evaluation');
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444417-testing build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}