From b45d036d42b1b768ce5479ca0e65dcf8345c3728 Mon Sep 17 00:00:00 2001 From: Alicja Szulecka <73056579+AliSzu@users.noreply.github.com> Date: Mon, 29 Apr 2024 21:45:09 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c07fd52..0b1bab3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,7 @@ pipeline { script { def customImage = docker.build("custom-image") customImage.inside { - sh 'python3 ./model.py' + params.EPOCHS + sh 'python3 ./model.py ' + params.EPOCHS archiveArtifacts artifacts: 'model.pth, predictions.txt', onlyIfSuccessful: true } }