Bug fix: disable non-nightly toolchains for fuzz for now
This commit is contained in:
parent
d36233a7db
commit
8e33631c31
1 changed files with 6 additions and 12 deletions
18
.github/workflows/ci.yaml
vendored
18
.github/workflows/ci.yaml
vendored
|
@ -81,15 +81,13 @@ jobs:
|
||||||
|
|
||||||
fuzz_read:
|
fuzz_read:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
rust: [stable, 1.67.0, nightly]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- run: cargo install cargo-fuzz
|
- run: cargo install cargo-fuzz
|
||||||
|
@ -109,15 +107,13 @@ jobs:
|
||||||
|
|
||||||
fuzz_write:
|
fuzz_write:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
rust: [stable, 1.67.0, nightly]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- run: cargo install cargo-fuzz
|
- run: cargo install cargo-fuzz
|
||||||
|
@ -137,15 +133,13 @@ jobs:
|
||||||
|
|
||||||
fuzz_write_with_no_features:
|
fuzz_write_with_no_features:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
rust: [stable, 1.67.0, nightly]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- run: cargo install cargo-fuzz
|
- run: cargo install cargo-fuzz
|
||||||
|
|
Loading…
Add table
Reference in a new issue