From 48ccb3e051a74b54e6286aff2e1e92be0a24febe Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Tue, 15 Oct 2019 10:15:06 +0200 Subject: [PATCH] [ci] Disable cargo fuzz on macos nightly; It has started breaking in ways unrelated to Cranelift, making it hard to spot real CI failures in Cranelift. We should re-enable it at some point, but disable it in the meanwhile. --- .azure-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 9e0a4697eb..f3935c5af8 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -88,6 +88,7 @@ jobs: - bash: cargo install cargo-fuzz displayName: Install cargo-fuzz condition: and(succeeded(), eq(variables['toolchain'], 'nightly')) + - bash: | fuzz_module="ffaefab69523eb11935a9b420d58826c8ea65c4c" cargo fuzz run fuzz_translate_module \ @@ -96,6 +97,7 @@ jobs: env: RUST_BACKTRACE: 1 condition: and(succeeded(), eq(variables['toolchain'], 'nightly')) + continueOnError: true - job: Fuzz_regression displayName: Fuzz regression