Skip to content

Commit

Permalink
reinstate zip_reports
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskeith committed Feb 4, 2025
1 parent b1de17d commit 83d60ff
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions zip_reports.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

. updated_modules.sh
updatedModules

echo "Packaging test reports: "
reportsDir="reports"
mkdir "$reportsDir"

for mod in $updated_modules
do
if [ -d "$mod/build/reports/" ]; then
zip -r "$reportsDir/${mod}.zip" "$mod/build/reports/"
fi
done

0 comments on commit 83d60ff

Please sign in to comment.