ium_444517/Jenkinsfile_sacred

25 lines
464 B
Plaintext
Raw Normal View History

2022-05-05 20:05:14 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
stage('Run sacred on nn_train ') {
steps {
sh 'python3 ./nn_train_sacred.py'
archiveArtifacts artifacts: 'sacred/_sources/*, sacred/1/*'
sh 'rm -r sacred'
}
}
}
}