diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-03-29 00:07:19 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-03-29 00:07:19 -0400 |
commit | 44789c404f39ea66bebd9deb3937f1f13d213cbe (patch) | |
tree | 5ec4664b6f2506f0e91cc1d583bf1c1ee91def8b | |
parent | b9ed23989c330483b4ffc0eac4762653a69ffaa7 (diff) | |
download | jenkins.debian.net-44789c404f39ea66bebd9deb3937f1f13d213cbe.tar.xz |
reproducible debian: i386 graphs should start yesterday
-rwxr-xr-x | bin/reproducible_common.sh | 11 |
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'" |