diff options
-rw-r--r-- | TODO | 6 | ||||
-rwxr-xr-x | bin/reproducible_stats.sh | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -91,6 +91,12 @@ See link:https://jenkins.debian.net/userContent/about.html["about jenkins.debian === reproducible * watch it build :) +* provide link to jenkins console log for 404 packages. probably use diff_path to store it (for all packages maybe?) +* get rid of non-random jobs and include those packages into a scheduler +** foo=(haklo hete joa) +** echo ${foo[1]} +** result: hete +* design schedulers before writing them: [todo here] === Test Debian live diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index fa002933..2f9cb7bd 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -73,7 +73,7 @@ for PKG in $UGLY ; do done htmlecho "</code></p>" if [ $COUNT_SOURCELESS -gt 0 ] ; then - htmlecho "<p>$COUNT_SOURCELESS ($PERCENT_SORCELESS%) packages which don't exist in sid and need investigation: <code>$SOURCELESS</code></p>" + htmlecho "<p>$COUNT_SOURCELESS ($PERCENT_SORCELESS%) packages where the source could not be downloaded. <code>$SOURCELESS</code></p>" fi if [ $COUNT_NOTFORUS -gt 0 ] ; then htmlecho "<p>$COUNT_NOTFORUS ($PERCENT_NOTFORUS%) packages which are neither Architecture: 'any' nor 'all' nor 'amd64': <code>$NOTFORUS</code></p>" |