add matplotlib
Some checks failed
s444417-training/pipeline/head There was a failure building this commit

This commit is contained in:
s444417 2022-05-03 22:09:18 +02:00
parent 81f6923ea4
commit 8a4c3af792
2 changed files with 6 additions and 6 deletions

View File

@ -8,11 +8,6 @@ pipeline {
archiveArtifacts 'trainResults.csv'
}
}
stage ('Starting eval job') {
steps {
build job: 's444417-evaluation/master', wait: true
}
}
}
post {
always {

View File

@ -8,7 +8,12 @@ pipeline {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
sh 'python3 ./src/trainScript.py 6'
archiveArtifacts 'saved_model/MyModel_tf/*'
archiveArtifacts 'saved_model/*'
}
}
stage ('Starting eval job') {
steps {
build job: 's444417-evaluation/master', wait: true
}
}
}