From 1b47ddd22663493cd82ae8079859002dca9ebe21 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 20 Feb 2020 20:02:26 -0500 Subject: [PATCH] Skip lto on travis when building fuzz targets as it takes 30 min --- fuzz/travis-fuzz.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/fuzz/travis-fuzz.sh b/fuzz/travis-fuzz.sh index 5ec431d7e..57e326472 100755 --- a/fuzz/travis-fuzz.sh +++ b/fuzz/travis-fuzz.sh @@ -13,6 +13,7 @@ rm *_target.rs popd cargo install --force honggfuzz +sed -i 's/lto = true//' Cargo.toml HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz build for TARGET in src/bin/*.rs; do FILENAME=$(basename $TARGET) -- 2.39.5