Skip to content

Commit

Permalink
ci: disable termwiz fuzz job
Browse files Browse the repository at this point in the history
  • Loading branch information
wez committed Jul 5, 2023
1 parent 2d6e200 commit 69bb69b
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions .github/workflows/termwiz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 69bb69b

Please sign in to comment.