diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-18 10:35:53 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-18 10:35:53 +0200 |
commit | b6596dbac671d27dab4e05c40709d71aa5a359ac (patch) | |
tree | cb5260c889038a61561c4252e1f1e6a72c8a81bb /bin | |
parent | c177f3b157eb822c180784e400f63a805c883fa2 (diff) | |
download | jenkins.debian.net-b6596dbac671d27dab4e05c40709d71aa5a359ac.tar.xz |
reproducible: first armhf builds actually started on 2015-08-30
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 08c44a28..d3fd2a2f 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -512,8 +512,8 @@ create_png_from_table() { # TABLE[0+2] have a architecture column: WHERE_EXTRA="$WHERE_EXTRA AND architecture = \"$ARCH\"" if [ $1 -eq 2 ] && [ "$ARCH" = "armhf" ] ; then - # armhf was only build since 2015-08-31 - WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2015-08-31'" + # armhf was only build since 2015-08-30 + WHERE_EXTRA="$WHERE_EXTRA AND datum >= '2015-08-30'" fi fi # run query @@ -521,8 +521,8 @@ create_png_from_table() { # not sure if it's worth to generate the following query... WHERE_EXTRA="AND architecture='$ARCH'" if [ "$ARCH" = "armhf" ] ; then - # armhf was only build since 2015-08-31 - WHERE2_EXTRA="WHERE s.datum >= '2015-08-31'" + # armhf was only build since 2015-08-30 + WHERE2_EXTRA="WHERE s.datum >= '2015-08-30'" fi sqlite3 -init ${INIT} --nullvalue 0 -csv ${PACKAGES_DB} "SELECT s.datum, COALESCE((SELECT e.reproducible FROM stats_builds_per_day AS e WHERE s.datum=e.datum AND suite='testing' $WHERE_EXTRA),0) AS 'reproducible_testing', |