From 69bb69b9ca30edb82e134a5835fcefadf8830fcc Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Wed, 5 Jul 2023 06:50:14 -0700 Subject: [PATCH] ci: disable termwiz fuzz job --- .github/workflows/termwiz.yml | 45 ++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/.github/workflows/termwiz.yml b/.github/workflows/termwiz.yml index 44d402b61..d27c6b9bb 100644 --- a/.github/workflows/termwiz.yml +++ b/.github/workflows/termwiz.yml @@ -48,26 +48,27 @@ jobs: cargo build -p termwiz --all-features cargo nextest run --no-fail-fast --package termwiz --all-features - fuzz-termwiz: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: "Install Stable Rust" - uses: dtolnay/rust-toolchain@stable - - name: "Cache cargo" - uses: Swatinem/rust-cache@v2 - with: - workspaces: | - termwiz - key: "termwiz-fuzz-${{ runner.os }}" - - name: "Install cargo-fuzz from Cargo" - uses: baptiste0928/cargo-install@v2 - with: - crate: "cargo-fuzz" - - name: Fuzz - run: | - source $HOME/.cargo/env - cd termwiz/fuzz - RUST_BACKTRACE=full cargo fuzz run escape_parse -- -max_total_time=60 +# Disabled because cargo-fuzz doesn't build with nightly or stable rust right now +# fuzz-termwiz: +# runs-on: ubuntu-latest +# steps: +# - name: Checkout +# uses: actions/checkout@v3 +# - name: "Install Stable Rust" +# uses: dtolnay/rust-toolchain@stable +# - name: "Cache cargo" +# uses: Swatinem/rust-cache@v2 +# with: +# workspaces: | +# termwiz +# key: "termwiz-fuzz-${{ runner.os }}" +# - name: "Install cargo-fuzz from Cargo" +# uses: baptiste0928/cargo-install@v2 +# with: +# crate: "cargo-fuzz" +# - name: Fuzz +# run: | +# source $HOME/.cargo/env +# cd termwiz/fuzz +# RUST_BACKTRACE=full cargo fuzz run escape_parse -- -max_total_time=60