Skip to content

Commit 2144b19

Browse files
Avoid openssl build errors due to out of disk space (#11618)
The docker image that runs the openssl build goes quickly out of disk space, because 4 different versions are built and since a while all CIFuzz builds started to fail, since the disk space is used up when the last openssl version is built. Mitigate that problem by deleting the source directory after the fuzzer build is complete, since that source tree is no longer needed at this time.
1 parent f7ac5e8 commit 2144b19

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/openssl/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ function build_fuzzers() {
6262
done
6363
cp fuzz/oids.txt $OUT/asn1${SUFFIX}.dict
6464
cp fuzz/oids.txt $OUT/x509${SUFFIX}.dict
65+
df
66+
rm -rf *
67+
df
6568
}
6669

6770
cd $SRC/openssl/

0 commit comments

Comments
 (0)