From eb676b2b4cadea73bb44378b9ece71d3b2211ee3 Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Fri, 1 Dec 2023 03:02:25 +0100 Subject: [PATCH] Try to unbreak CI (#6) It hasn't run for a while and things have changed. It's no longer -Zinstrument-coverage but -Cinstrument-coverage. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fcddb09..af4af1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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