Commit 64d6741
committed
fix(container): make source tree world-readable for non-root coverage
The fuzzing platform runs containers as UID 65534 (nobody). Source
files and build artifacts copied from the builder stage were only
readable by root, causing llvm-cov to emit "Permission denied" for
every file during HTML report generation.
- Move CRS into /home/fuzzer/aztec-packages/.bb-crs so one chmod
covers source tree, build-fuzzing-cov, and CRS in a single layer
- Replace chmod -R 755 with chmod -R a+rX (adds read for all, execute
only on dirs and already-executable files — no over-grant on data)1 parent 44c4a29 commit 64d6741
1 file changed
+9
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
111 | 116 | | |
112 | 117 | | |
113 | 118 | | |
| |||
0 commit comments