This commit is contained in:
wojciechbatruszewicz 2023-06-27 15:39:37 +02:00
parent 1849c3e253
commit fa9f18d0de

View File

@ -34,12 +34,10 @@ pipeline {
script { script {
sh 'ls -l' sh 'ls -l'
docker.image('docker-image').inside { docker.image('docker-image').inside {
dir('./MLEvaluate') {
sh 'ls -l' sh 'ls -l'
sh 'python3 ./model_test.py' sh 'python3 ./model_test.py'
archiveArtifacts 'plot.png' archiveArtifacts 'plot.png'
archiveArtifacts 'result.csv' archiveArtifacts 'result.csv'
}
} }
} }
} }