summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2021-12-18 13:37:37 -0300
committerGitHub <noreply@github.com>2021-12-18 16:37:37 +0000
commitd4dc34ee716b372d81ff8c4d166e70ecdd11e7ef (patch)
tree859709365b7d77fecf33140adad2061de7e9fd50 /Jenkinsfile
parentd5b71bd0f531986d2a6a63f0a90d8e1233e01a7f (diff)
Update progress script with new assets categories and update csv output format (#510)
* Reorganize csvs and progress.py * Put stuff in the correct folders * Reduce lots of repeated code * Change csv output format * Filter out automaticaly named variables in "Matching" progress calculation for assets * Address Elliptic's review * Don't count handwritten files in progress and add a way to fix files detected in the wrong section * Add missing "total" * More fixing * Add two missing columns * Update paths in Jenkinsfile * Update progress shield in readme * Update progress link
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index df06c6a09..cf5d8f3b6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -52,9 +52,9 @@ pipeline {
}
steps {
sh 'mkdir reports'
- sh 'python3 ./tools/progress.py csv >> reports/progress_mm.us.rev1.csv'
- sh 'python3 ./tools/progress.py csv -m >> reports/progress_matching_mm.us.rev1.csv'
- sh 'python3 ./tools/progress.py shield-json > reports/progress_shield_mm.us.rev1.json'
+ sh 'python3 ./tools/progress.py csv >> reports/progress-mm-nonmatching.csv'
+ sh 'python3 ./tools/progress.py csv -m >> reports/progress-mm-matching.csv'
+ sh 'python3 ./tools/progress.py shield-json > reports/progress-mm-shield.json'
stash includes: 'reports/*', name: 'reports'
}
}
@@ -67,9 +67,9 @@ pipeline {
}
steps {
unstash 'reports'
- sh 'cat reports/progress_mm.us.rev1.csv >> /var/www/html/reports/progress_mm.us.rev1.csv'
- sh 'cat reports/progress_matching_mm.us.rev1.csv >> /var/www/html/reports/progress_matching_mm.us.rev1.csv'
- sh 'cat reports/progress_shield_mm.us.rev1.json > /var/www/html/reports/progress_shield_mm.us.rev1.json'
+ sh 'cat reports/progress-mm-nonmatching.csv >> /var/www/zelda64.dev/assets/csv/progress-mm-nonmatching.csv'
+ sh 'cat reports/progress-mm-matching.csv >> /var/www/zelda64.dev/assets/csv/progress-mm-matching.csv'
+ sh 'cat reports/progress-mm-shield.json > /var/www/zelda64.dev/assets/csv/progress-mm-shield.json'
}
}
}