From f7ea9538f8e6ac3f9ac0f33af89bd1adf0f40999 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sun, 25 Dec 2016 14:13:18 +0100 Subject: reproducible Debian: correct graphs for arm64 Signed-off-by: Holger Levsen --- bin/reproducible_common.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 1220ccda..1ce8aec6 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -642,6 +642,9 @@ create_png_from_table() { elif [ "$ARCH" = "i386" ] ; then # i386 was only build since 2016-03-28 WHERE2_EXTRA="WHERE s.datum >= '2016-03-28'" + elif [ "$ARCH" = "arm64" ] ; then + # arm63 was only build since 2016-12-23 + WHERE2_EXTRA="WHERE s.datum >= '2016-12-23'" else WHERE2_EXTRA="" fi @@ -662,6 +665,11 @@ create_png_from_table() { # i386 was only build since 2016-03-28 WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2016-03-28'" fi + elif [ "$ARCH" = "arm64" ] ; then + if [ $1 -eq 2 ] ; then + # arm64 was only build since 2016-12-23 + WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2016-12-23'" + fi fi # testing/amd64 was only build since... # WHERE2_EXTRA="WHERE s.datum >= '2015-03-08'" -- cgit v1.2.3-54-g00ecf