Skip to content

Commit

Permalink
Optimize github fuzz action
Browse files Browse the repository at this point in the history
The action environment apparently already has gcc & g++ installed, so there's no need to waste time with the apt-get update
  • Loading branch information
cole14 authored Nov 1, 2022
1 parent 801c887 commit 125681c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ jobs:
curl -sSL https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain=nightly
export PATH="$HOME/.cargo/bin:$PATH"
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install tools needed to build cargo fuzz
run: |
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install gcc g++
- name: Install cargo fuzz
run: cargo install cargo-fuzz
- name: Build
Expand Down

0 comments on commit 125681c

Please sign in to comment.