From a858d26e10bed07305963e31b25900271c3b0a87 Mon Sep 17 00:00:00 2001 From: Kenix3 Date: Wed, 10 Mar 2021 22:38:56 -0500 Subject: [PATCH] Updates jenkinsfile to give the name of the progress.csv files based on the MM version (#65) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ee97bc9249..e1ac68b24e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,9 +31,9 @@ pipeline { branch 'master' } steps { - sh 'python3 ./tools/progress.py csv >> /var/www/html/reports/progress_mm.csv' - sh 'python3 ./tools/progress.py csv -m >> /var/www/html/reports/progress_mm_matching.csv' - sh 'python3 ./tools/progress.py shield-json > /var/www/html/reports/progress_mm_shield.json' + sh 'python3 ./tools/progress.py csv >> /var/www/html/reports/progress_mm.us.rev1.csv' + sh 'python3 ./tools/progress.py csv -m >> /var/www/html/reports/progress_matching_mm.us.rev1.csv' + sh 'python3 ./tools/progress.py shield-json > /var/www/html/reports/progress_shield_mm.us.rev1.json' } } }