diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-18 19:37:27 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-18 19:37:27 +0100 |
commit | 7469d41160b8e82eb3a8c326bbd1d782d7ae7cf2 (patch) | |
tree | 70165e73d211fa46b07f8bf2fe2bde4fc9a2ea35 | |
parent | 2b3fcd382f7e2c0995eab023d70b48b71c231d1d (diff) | |
download | jenkins.debian.net-7469d41160b8e82eb3a8c326bbd1d782d7ae7cf2.tar.xz |
reproducible: seems 'linux64 --uname-2.6' is broken for at least some time (#806911)
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -142,7 +142,7 @@ The plan is to run a jenkins.d.o host, which is maintained by DSA, but we are ma * higher prio: ** dashboard: number of cores used is wrong for amd64… -** re-enable linux-2.6 usage +** re-enable linux-2.6 usage once 806911 has been fixed ** make maintenance job detect and reschedule logs with: 'E: 10mount: error: Directory '.*' does not exist' ** make maintenance job detect and reschedule logs with: '^Bus Error$' ** scheduler: check if there have been more than X failures or depwait in the last Y hours and if so unschedule all packages, disable scheduling and send a mail informing us. diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 042297a3..f6237064 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -397,7 +397,7 @@ write_explaination_table() { fi if [ "$1" != "FreeBSD" ] ; then if [ "$1" = "debian" ] ; then - write_page "<tr><td>kernel version, <em>currently not</em> modified using /usr/bin/linux64 --uname-2.6</td></td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep KERNEL1 | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep KERNEL2 | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td></tr>" + write_page "<tr><td>kernel version, <em>currently not</em> additionally modified using <code>/usr/bin/linux64 --uname-2.6</code> (due to <a href="https://bugs.debian.org/806911">#806911</a>)</td></td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep KERNEL1 | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep KERNEL2 | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td></tr>" elif [ "$1" != "Arch Linux" ] ; then write_page "<tr><td>kernel version, modified using /usr/bin/linux64 --uname-2.6</td><td>$(uname -sr)</td><td>$(/usr/bin/linux64 --uname-2.6 uname -sr)</td></tr>" else |