From 37c70995a48ba77ba82a57acc38ae9a73504eee7 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Wed, 13 Nov 2019 14:42:45 -0800 Subject: [PATCH] Temporarily disable fuzzing until #1216 is resolved (#1224) --- cranelift/.github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cranelift/.github/workflows/main.yml b/cranelift/.github/workflows/main.yml index d39e690d6df1..8a82fa594cc4 100644 --- a/cranelift/.github/workflows/main.yml +++ b/cranelift/.github/workflows/main.yml @@ -109,12 +109,13 @@ jobs: cargo fuzz run fuzz_translate_module fuzz/corpus/fuzz_translate_module/$fuzz_module env: RUST_BACKTRACE: 1 - if: matrix.rust == 'nightly' + if: false && matrix.rust == 'nightly' # Temporarily disable fuzz tests until https://github.com/bytecodealliance/cranelift/issues/1216 is resolved continue-on-error: true fuzz: name: Fuzz Regression runs-on: ubuntu-latest + if: false # Temporarily disable fuzz tests until https://github.com/bytecodealliance/cranelift/issues/1216 is resolved steps: - uses: actions/checkout@master - name: Install Rust @@ -125,7 +126,7 @@ jobs: fuzz_push: name: Fuzz (push) runs-on: ubuntu-latest - if: github.event_name == 'push' + if: false && github.event_name == 'push' # Temporarily disable fuzz tests until https://github.com/bytecodealliance/cranelift/issues/1216 is resolved steps: - uses: actions/checkout@master - name: Install Rust