diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-01-03 22:24:47 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-03 22:24:47 +0100 |
commit | 1a77c7ec20a58ac437d82d5be88a6a182c2b78cd (patch) | |
tree | af57e190c29d59c72700af84ed0e7b5275ed43b5 | |
parent | ab0b94d44d9cda33dac8ef3288f0528f39f0a0c3 (diff) | |
download | jenkins.debian.net-1a77c7ec20a58ac437d82d5be88a6a182c2b78cd.tar.xz |
reproducible: use new lists
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index ffd86af5..f8d20ea9 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -228,8 +228,9 @@ for i in 0 3 4 5 6 1 ; do write_page " <a href=\"/userContent/$PNG\"><img src=\"/userContent/$PNG\" class=\"graph\" alt=\"${MAINLABEL[$i]}\"></a>" write_page " <br />The package set '${META_PKGSET[$j]}' consists of: " # FIXME: split into good/bad/ugly too - force_package_targets ${META_LIST[$j]} - link_packages ${META_LIST[$j]} + META_LIST=$(cat /srv/reproducible-results/meta_pkgsets/${META_PKGSET[$i]}.pkgset) + force_package_targets $META_LIST + link_packages $META_LIST write_page " </div>" # redo pngs once a day if [ ! -f /var/lib/jenkins/userContent/$PNG ] || [ -z $(find /var/lib/jenkins/userContent -maxdepth 1 -mtime +0 -name $PNG) ] ; then |