From c785c6d1479167af32d4c458e4ef82a23cce38dd Mon Sep 17 00:00:00 2001 From: Adrian Charkiewicz Date: Sat, 7 May 2022 05:01:08 +0200 Subject: [PATCH] no usage for epochs parameter --- Jenkinsfile3 | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile3 b/Jenkinsfile3 index 3c2dd1d..2561578 100644 --- a/Jenkinsfile3 +++ b/Jenkinsfile3 @@ -3,22 +3,14 @@ pipeline { dockerfile true } - parameters{ - string( - defaultValue: '5', - description: 'Epoch number', - name: 'EPOCH_NUMBER' - ) - } + stages { stage('Copy') { steps { copyArtifacts projectName: 's444354-create-dataset' - sh 'ls -la' - sh 'echo $EPOCH_NUMBER' - sh 'python3 ./pytorch/pytorch.py $EPOCH_NUMBER' + sh 'python3 ./pytorch/pytorch.py' } } stage('Archive') {