Skip to content

Commit

Permalink
fix cargo make in coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Sep 23, 2024
1 parent 93dd00a commit 5685671
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,18 @@ jobs:
rustup toolchain install nightly-2021-05-09 --component llvm-tools-preview
rustup default nightly-2021-05-09
- name: Install Cargo Packages
run: |
cargo install --force cargo-make --locked --version '^0.32'
cargo install --force cargo-binutils --locked
env:
DEBIAN_FRONTEND: noninteractive
- name: Install Cargo Make
uses: davidB/rust-cargo-make@v1
# - name: Install cargo-make from crates.io
# uses: baptiste0928/cargo-install@v3
# with:
# crate: cargo-make
# version: '^0.37.16'
- name: Install cargo-binutils from crates.io
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-binutils
version: '^0.3.6'

- name: Generate test lcov coverage into coverage/ dir
env:
Expand Down

0 comments on commit 5685671

Please sign in to comment.