977
edits
Lukasblakk (talk | contribs) |
Lukasblakk (talk | contribs) |
||
| Line 14: | Line 14: | ||
(1) Slaves sometimes run out of disk space because of failed nightly builds that did not clean-up after themselves. Here's a helper script to clean those up: | (1) Slaves sometimes run out of disk space because of failed nightly builds that did not clean-up after themselves. Here's a helper script to clean those up: | ||
for i in `find /builds/moz2_slave -maxdepth 1 -iname "*-nightly" -type d`; do find $i -maxdepth 1 -type d -iname build -exec rm -rf {} \;; done | for i in `find /builds/moz2_slave -maxdepth 1 -iname "*-nightly" -type d`; do find $i -maxdepth 1 -type d -iname build -exec rm -rf {} \;; done | ||
== Fixing Failing Builds == | == Fixing Failing Builds (clobber steps) == | ||
'''Login as cltbld with VNC (only use SSH if you do not need to start/stop any processes)''' | '''Login as cltbld with VNC (only use SSH if you do not need to start/stop any processes)''' | ||
edits