diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-25 14:13:18 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-25 14:13:18 +0100 |
commit | f7ea9538f8e6ac3f9ac0f33af89bd1adf0f40999 (patch) | |
tree | a78668bba8cf9591ade364f883435aa9614bf6a4 | |
parent | b4e9e5f4ca425db7723cfefa434087f49f522215 (diff) | |
download | jenkins.debian.net-f7ea9538f8e6ac3f9ac0f33af89bd1adf0f40999.tar.xz |
reproducible Debian: correct graphs for arm64
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-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'" |