diff --git a/evaluation.Jenkinsfile b/evaluation.Jenkinsfile index 3e4e226..8eb860b 100644 --- a/evaluation.Jenkinsfile +++ b/evaluation.Jenkinsfile @@ -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}" diff --git a/training.Jenkinsfile b/training.Jenkinsfile index 75cfae5..74ab8c2 100644 --- a/training.Jenkinsfile +++ b/training.Jenkinsfile @@ -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}" } }