CI: Go back to manual rustup+cargo install
The actions-rs helpers spew out a bunch of warnings about using deprecated features that are going away soon. They also aren't any faster than the old manual way of doing things which worked fine.
This commit is contained in:
parent
af1b4145ac
commit
2fa91412c2
20
.github/workflows/fuzz.yml
vendored
20
.github/workflows/fuzz.yml
vendored
@ -16,18 +16,14 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
- name: Install nightly Rust
|
||||||
name: Install Rust
|
shell: bash
|
||||||
with:
|
run: |
|
||||||
profile: minimal
|
curl -sSL https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain=nightly
|
||||||
toolchain: nightly
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
override: true
|
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
||||||
- uses: actions-rs/install@v0.1
|
- name: Install cargo fuzz
|
||||||
name: Install cargo-fuzz
|
run: cargo install cargo-fuzz
|
||||||
with:
|
|
||||||
crate: cargo-fuzz
|
|
||||||
version: latest
|
|
||||||
use-tool-cache: true
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: cargo build --verbose
|
||||||
- name: Cache fuzzy corpus
|
- name: Cache fuzzy corpus
|
||||||
|
Loading…
x
Reference in New Issue
Block a user