fix param from eval jenkins
All checks were successful
s444417-training/pipeline/head This commit looks good
s444417-evaluation/pipeline/head This commit looks good

This commit is contained in:
s444417 2022-05-04 18:43:44 +02:00
parent 30e76ccd73
commit 707719b5b4
2 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,7 @@ pipeline {
stage('Copy') {
steps {
copyArtifacts projectName: 's444417-create-dataset'
copyArtifacts projectName: 's444417-training/${params.TRAINING_BRANCH}'
copyArtifacts projectName: 's444417-training/$TRAINING_BRANCH'
sh 'python3 ./src/evalScript.py'
archiveArtifacts 'trainResults.csv'
sh "ls -la"

View File

@ -14,6 +14,7 @@ pipeline {
steps {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
sh 'echo $EPOCH_NUMBER'
sh 'python3 ./src/trainScript.py $EPOCH_NUMBER'
}
}