summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 9492ae97..8118f40a 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -636,6 +636,9 @@ create_png_from_table() {
if [ "$ARCH" = "armhf" ] ; then
# armhf was only build since 2015-08-30
WHERE2_EXTRA="WHERE s.datum >= '2015-08-30'"
+ elif [ "$ARCH" = "i386" ] ; then
+ # i386 was only build since 2016-03-28
+ WHERE2_EXTRA="WHERE s.datum >= '2016-03-28'"
else
WHERE2_EXTRA=""
fi
@@ -654,6 +657,14 @@ create_png_from_table() {
# armhf only has pkg sets for unstable since 2015-12-22 and since 2016-02-13 for testing
WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2015-12-22'"
fi
+ elif [ "$ARCH" = "i386" ] ; then
+ if [ $1 -eq 2 ] ; then
+ # i386 was only build since 2016-03-28
+ WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2016-03-28'"
+ elif [ $1 -eq 6 ] ; then
+ # i386 only has pkg sets since that day too, but maybe I'll change that
+ WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2016-03-28'"
+ fi
fi
# testing/amd64 was only build since...
# WHERE2_EXTRA="WHERE s.datum >= '2015-03-08'"