diff options
-rwxr-xr-x | bin/reproducible_common.sh | 8 |
1 files changed, 8 insertions, 0 deletions
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'" |