Closed
Bug 1615312
Opened 5 years ago
Closed 5 years ago
generic-worker: simple engine does not always clean up task directories
Categories
(Taskcluster :: Workers, defect)
Taskcluster
Workers
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: pmoore, Assigned: pmoore)
Details
Currently the rasbperry pi CI worker runs out of disk space from time-to-time since old task directories are not always getting cleaned up.
On closer inspection, rm -rf <task dir> fails sometimes since some of the files have had their user-writable bit unset.
This can be fixed by running chmod -R u+w <dir> before running rm -rf <task dir>.
At the same time as implementing the change, it would be worthwhile to use the native chmod and rm commands on the host, since these produce useful output in the case of failure.
Comment 1•5 years ago
|
||
Assignee: nobody → pmoore
| Assignee | ||
Comment 2•5 years ago
|
||
Released in taskcluster 25.3.0.
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•