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:
Christopher Cole 2022-11-06 19:54:24 -08:00 committed by GitHub
parent af1b4145ac
commit 2fa91412c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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