summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_common.sh2
-rwxr-xr-xbin/reproducible_html_dashboards.sh12
2 files changed, 8 insertions, 6 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index fcee0bed..ad74b6ff 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -40,7 +40,7 @@ JENKINS_URL=${JENKINS_URL:0:-1}
# suites being tested
SUITES="testing unstable experimental"
# architectures being tested
-ARCHS="amd64" # (this variable is unused atm)
+ARCHS="amd64 armhf"
# number of cores to be used
NUM_CPU=$(grep -c '^processor' /proc/cpuinfo)
diff --git a/bin/reproducible_html_dashboards.sh b/bin/reproducible_html_dashboards.sh
index 01687dc7..14811959 100755
--- a/bin/reproducible_html_dashboards.sh
+++ b/bin/reproducible_html_dashboards.sh
@@ -14,7 +14,6 @@ common_init "$@"
#
# init some variables
#
-ARCH="amd64" # we only care about amd64 status here (for now)
# we only do stats up until yesterday... we also could do today too but not update the db yet...
DATE=$(date -d "1 day ago" '+%Y-%m-%d')
FORCE_DATE=$(date -d "2 day ago" '+%Y-%m-%d')
@@ -431,11 +430,14 @@ create_main_stats_page() {
SUITE="unstable"
update_bug_stats
update_notes_stats
-for SUITE in $SUITES ; do
- update_suite_stats
- gather_suite_stats
- create_suite_stats_page
+for ARCH in ${ARCHS} ; do
+ for SUITE in $SUITES ; do
+ update_suite_stats
+ gather_suite_stats
+ create_suite_stats_page
+ done
done
+ARCH="amd64"
SUITE="unstable"
create_main_stats_page