Skip to content

Commit

Permalink
Add CI to check that libfuzzer is vendored at the correct version
Browse files Browse the repository at this point in the history
Avoids version mismatches, supply-chain attacks, etc...
  • Loading branch information
fitzgen committed Nov 7, 2024
1 parent 4a4554e commit 94c9045
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@ name: Rust
on: [push, pull_request]

jobs:
check_libfuzzer_checkout:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Re-vendor libfuzzer
run: ./update-libfuzzer.sh
- name: Check that nothing changed
run: git diff --exit-code

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Install nightly Rust
run: |
Expand Down

0 comments on commit 94c9045

Please sign in to comment.