Skip to content

Commit

Permalink
avoid nightly rust for cargo fuzz
Browse files Browse the repository at this point in the history
An older version of proc-macro2 used by many crates doesn't compile
on nightly rust any more.  It doesn't look like we need nightly
rust for cargo-fuzz any more, so try using stable rust instead.
  • Loading branch information
wez committed Jul 3, 2023
1 parent 35df422 commit 9459f64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/termwiz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: "Install Rust"
uses: dtolnay/rust-toolchain@nightly
- name: "Install Stable Rust"
uses: dtolnay/rust-toolchain
- name: "Cache cargo"
uses: Swatinem/rust-cache@v2
with:
Expand All @@ -69,5 +69,5 @@ jobs:
run: |
source $HOME/.cargo/env
cd termwiz/fuzz
RUST_BACKTRACE=full cargo +nightly fuzz run escape_parse -- -max_total_time=60
RUST_BACKTRACE=full cargo fuzz run escape_parse -- -max_total_time=60

0 comments on commit 9459f64

Please sign in to comment.