Temporarily disable fuzzing until #1216 is resolved (#1224)

This commit is contained in:
Andrew Brown
2019-11-13 14:42:45 -08:00
committed by Alex Crichton
parent 215884e907
commit 37c70995a4

View File

@@ -109,12 +109,13 @@ jobs:
cargo fuzz run fuzz_translate_module fuzz/corpus/fuzz_translate_module/$fuzz_module cargo fuzz run fuzz_translate_module fuzz/corpus/fuzz_translate_module/$fuzz_module
env: env:
RUST_BACKTRACE: 1 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 continue-on-error: true
fuzz: fuzz:
name: Fuzz Regression name: Fuzz Regression
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: false # Temporarily disable fuzz tests until https://github.com/bytecodealliance/cranelift/issues/1216 is resolved
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- name: Install Rust - name: Install Rust
@@ -125,7 +126,7 @@ jobs:
fuzz_push: fuzz_push:
name: Fuzz (push) name: Fuzz (push)
runs-on: ubuntu-latest 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: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- name: Install Rust - name: Install Rust