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

This commit is contained in:
s444417 2022-05-03 22:12:57 +02:00
parent 54025b1f1e
commit 7383368ec7

View File

@ -1,10 +1,12 @@
pipeline {
agent none
agent {
dockerfile true
}
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444417-training'
sh 'python3 evalScript.py'
sh 'python3 .src/evalScript.py'
archiveArtifacts 'trainResults.csv'
}
}