Skip to content

Commit

Permalink
Try to unbreak CI (#6)
Browse files Browse the repository at this point in the history
It hasn't run for a while and things have changed. It's no longer
-Zinstrument-coverage but -Cinstrument-coverage.
  • Loading branch information
jstasiak committed Dec 1, 2023
1 parent cd27aaa commit eb676b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
- name: Build
run: cargo build --verbose
env:
RUSTFLAGS: -Zinstrument-coverage
RUSTFLAGS: -Cinstrument-coverage
- name: Test
run: cargo test
env:
# cargo test builds some things too so we need to add this flag here as well
RUSTFLAGS: -Zinstrument-coverage
RUSTFLAGS: -Cinstrument-coverage
LLVM_PROFILE_FILE: cachedir-%p-%m.profraw
- name: Enforce formatting
run: cargo fmt -- --check
Expand Down

0 comments on commit eb676b2

Please sign in to comment.