From 80fc4399dfa031355c68b8feae75c364dc1ebfe8 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 10 Sep 2015 20:35:13 +0200 Subject: reproducible: create arch specific schedule pages --- bin/reproducible_common.py | 2 +- bin/reproducible_common.sh | 2 ++ bin/reproducible_html_indexes.py | 22 +++++++++++----------- 3 files changed, 14 insertions(+), 12 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 91e4ec1d..6c6484eb 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -184,7 +184,7 @@ html_head_page = Template((tab*2).join("""
  • issues
  • packages with notes
  • packages without notes
  • -
  • currently scheduled
  • +
  • currently scheduled
  • $links
  • repositories overview
  • reproducible stats
  • diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 0cc587dc..9fe6c706 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -232,6 +232,8 @@ write_page_header() { fi write_page "
  • suite: $i
  • " done + elif [ "$TARGET" = "scheduled" ] ; then + write_page "
  • ${SPOKEN_TARGET}
  • " elif [ "$TARGET" = "notify" ] ; then write_page "
  • ${SPOKEN_TARGET}
  • " elif [ "$TARGET" = "arch" ] ; then diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 29e514d1..5eabe473 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -535,17 +535,17 @@ def build_page(page, suite=None, arch=None): log.info('"' + title + '" now available at ' + desturl) -def generate_schedule(): - """ the schedule is very different than others index pages """ - log.info('Building the schedule index page...') - title = 'Packages currently scheduled for testing for build reproducibility' +def generate_schedule(arch): + """ the schedule pages are very different than others index pages """ + log.info('Building the schedule index page for ' + arch +'...') + title = 'Packages currently scheduled on {arch} for testing for build reproducibility' query = 'SELECT sch.date_scheduled, s.suite, s.architecture, s.name ' + \ 'FROM schedule AS sch JOIN sources AS s ON sch.package_id=s.id ' + \ - 'WHERE sch.date_build_started = "" ORDER BY sch.date_scheduled' - text = Template('$tot packages are currently scheduled for testing:') + 'WHERE sch.date_build_started = "" AND s.architecture="{arch}" ORDER BY sch.date_scheduled' + text = Template('$tot packages are currently scheduled for testing on $arch:') html = '' - rows = query_db(query) - html += build_leading_text_section({'text': text}, rows, defaultsuite, defaultarch) + rows = query_db(query.format(arch=arch)) + html += build_leading_text_section({'text': text}, rows, defaultsuite, arch) html += '

    \n' + tab html += '' html += '\n' @@ -558,16 +558,16 @@ def generate_schedule(): html += link_package(pkg, row[1], row[2], bugs) html += '\n' html += '
    #scheduled atsuitearchitecturesource package

    \n' - destfile = BASE + '/index_scheduled.html' - desturl = REPRODUCIBLE_URL + '/index_scheduled.html' + destfile = BASE + '/index_' + arch + '_scheduled.html' + desturl = REPRODUCIBLE_URL + '/index_' + arch + '_scheduled.html' write_html_page(title=title, body=html, destfile=destfile, style_note=True) bugs = get_bugs() if __name__ == '__main__': - generate_schedule() for arch in ARCHS: + generate_schedule(arch) for suite in SUITES: if arch == 'armhf' and suite != 'unstable': continue -- cgit v1.2.3-54-g00ecf