diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/make_graph.py | 10 | ||||
-rwxr-xr-x | bin/reproducible_common.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 10 | ||||
-rwxr-xr-x | bin/reproducible_html_repo_stats.sh | 4 |
5 files changed, 16 insertions, 12 deletions
diff --git a/bin/make_graph.py b/bin/make_graph.py index dd4d3dd6..fae1ddcd 100755 --- a/bin/make_graph.py +++ b/bin/make_graph.py @@ -30,11 +30,11 @@ def main(): # thanks to http://tango.freedesktop.org/Generic_Icon_Theme_Guidelines for those nice colors if int(colors) < 6: r('palette(c("#4e9a06", "#f57900", "#cc0000", "#2e3436", "#888a85"))') - elif int(colors) == 8: # once we have 12 colors, add: "#8ae234", "#fcaf3e", "#ef2929", "#888a85" - r('palette(c("#4e9a06", "#73d216", \ - "#ce5c00", "#f57900", \ - "#a40000", "#cc0000", \ - "#2e3436", "#555753" ))') + elif int(colors) == 12: + r('palette(c("#4e9a06", "#73d216", "#8ae234", \ + "#ce5c00", "#f57900", "#fcaf3e", \ + "#a40000", "#cc0000", "#ef2929", \ + "#2e3436", "#555753", "#888a85" ))') else: r('palette(c("#fce94f", "#c4a000", "#eeeeec", "#babdb6", \ "#fcaf3e", "#ce5c00", "#ad7fa8", "#5c3566", \ diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index e33d24f8..07456127 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -25,7 +25,7 @@ DEBUG = False QUIET = False # tested suites -SUITES = ['sid', 'experimental'] +SUITES = ['sid', 'testing', 'experimental'] # tested arches ARCHES = ['amd64'] diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 3e17d793..706d76ad 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -40,7 +40,7 @@ DBDCHROOT_WRITELOCK=/var/lib/jenkins/reproducible-dbdchroot.writelock JENKINS_URL=${JENKINS_URL:0:-1} # tested suites -SUITES="sid experimental" +SUITES="sid testing experimental" # tested arches ARCHES="amd64" diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index d6166646..ee1c3edb 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -281,12 +281,16 @@ create_png_from_table() { sqlite3 -init ${INIT} --nullvalue 0 -csv ${PACKAGES_DB} "select s.datum, s.reproducible as 'reproducible_sid', COALESCE((SELECT e.reproducible FROM stats_builds_per_day AS e where s.datum=e.datum and suite='experimental'),0) as 'reproducible_experimental', + COALESCE((SELECT e.reproducible FROM stats_builds_per_day AS e where s.datum=e.datum and suite='testing'),0) as 'reproducible_testing', s.unreproducible as 'unreproducible_sid', (SELECT e.unreproducible FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='experimental') AS unreproducible_experimental, + (SELECT e.unreproducible FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='testing') AS unreproducible_testing, s.FTBFS as 'FTBFS_sid', (SELECT e.FTBFS FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='experimental') AS FTBFS_experimental, + (SELECT e.FTBFS FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='testing') AS FTBFS_testing, s.other as 'other_sid', - (SELECT e.other FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='experimental') AS other_experimental + (SELECT e.other FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='experimental') AS other_experimental, + (SELECT e.other FROM stats_builds_per_day e WHERE s.datum=e.datum AND suite='testing') AS other_testing FROM stats_builds_per_day AS s WHERE s.suite='sid' GROUP BY s.datum" >> ${TABLE[$1]}.csv elif [ $1 -eq 2 ] ; then sqlite3 -init ${INIT} -csv ${PACKAGES_DB} "SELECT datum, ((oldest_reproducible + oldest_unreproducible + oldest_FTBFS)/3) FROM ${TABLE[$1]} ${WHERE_EXTRA} ORDER BY datum" >> ${TABLE[$1]}.csv @@ -531,8 +535,8 @@ for SUITE in $SUITES ; do update_suite_stats gather_suite_stats create_suite_stats_page - if [ "$SUITE" = "experimental" ] ; then - # no pkg sets in experimental + if [ "$SUITE" != "sid" ] ; then + # FIXME: should be: no pkg sets in experimental continue fi update_meta_pkg_stats diff --git a/bin/reproducible_html_repo_stats.sh b/bin/reproducible_html_repo_stats.sh index 966b270c..72cd4e8c 100755 --- a/bin/reproducible_html_repo_stats.sh +++ b/bin/reproducible_html_repo_stats.sh @@ -10,8 +10,8 @@ common_init "$@" # common code defining db access . /srv/jenkins/bin/reproducible_common.sh -SUITE="sid" -ARCH="amd64" +SUITE="sid" # for links in page +ARCH="amd64" # same init_html VIEW=repo_stats |