eval
Some checks failed
s434742-training/pipeline/head There was a failure building this commit
s434742-evaluation/pipeline/head There was a failure building this commit

This commit is contained in:
patrycjalazna 2021-05-14 21:06:49 +02:00
parent 89ee49bca3
commit 6db6bcffe5
2 changed files with 3 additions and 2 deletions

View File

@ -42,6 +42,7 @@ pipeline {
steps {
script {
sh "echo 'halko'"
sh 'chmod +x avocado-evaluation.py'
sh "echo ${env.BUILD_ID}"
sh "python3 avocado-evaluation.py ${env.BUILD_ID}"

View File

@ -35,8 +35,8 @@ pipeline {
def img = docker.build('patlaz/ium:1.0')
img.inside {
sh 'chmod +x avocado-training.py'
sh 'echo ${EPOCHS} ${BATCH_SIZE}'
sh 'python3 avocado-training.py ${EPOCHS} ${BATCH_SIZE}'
sh "echo ${EPOCHS} ${BATCH_SIZE}"
sh "python3 avocado-training.py ${EPOCHS} ${BATCH_SIZE}"
}
}