aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Max Moroz <mmoroz@chromium.org>2019-06-10 10:00:20 -0700
committerGravatar Max Moroz <mmoroz@chromium.org>2019-06-10 10:00:20 -0700
commit1f0a33c71256ebd0ef45c1e69762d2ba5c011b0d (patch)
tree4db4994e605a35201476a293d0fa3c5ec658e0cc /infra
parentf858510cbe1f2b2c32a59ee837eb11173e4f2bc9 (diff)
[infra] Do not archive seed corpus for dataflow builds.
Diffstat (limited to 'infra')
-rwxr-xr-xinfra/base-images/base-builder/compile5
1 files changed, 5 insertions, 0 deletions
diff --git a/infra/base-images/base-builder/compile b/infra/base-images/base-builder/compile
index 5e63f0dd..5538b2a3 100755
--- a/infra/base-images/base-builder/compile
+++ b/infra/base-images/base-builder/compile
@@ -89,3 +89,8 @@ else
$COPY_SOURCES_CMD 2>/dev/null || true
fi
fi
+
+if [[ "$FUZZING_ENGINE" = "dataflow" ]]; then
+ # Remove seed corpus as it can be huge but is not needed for a dataflow build.
+ rm $OUT/*.zip
+fi