Updates jenkinsfile to give the name of the progress.csv files based on the MM version (#65)

This commit is contained in:
Kenix3 2021-03-10 22:38:56 -05:00 committed by GitHub
parent 8468e83786
commit a858d26e10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -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'
}
}
}