Skip to content

Commit d717e59

Browse files
committed
Fix codecov action
1 parent 58b0df7 commit d717e59

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ jobs:
1919
sudo add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ /"
2020
sudo apt-get update -q
2121
sudo apt-get install cuda -y --no-install-recommends
22-
23-
- name: Download grcov
24-
run: |
25-
curl -sL https://github.com/mozilla/grcov/releases/download/v0.8.18/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf -
26-
chmod +x ./grcov
2722
2823
- name: Checkout the Repository
2924
uses: actions/checkout@v2
@@ -54,6 +49,11 @@ jobs:
5449
RUSTDOCFLAGS: -Cinstrument-coverage
5550
LLVM_PROFILE_FILE: coverage/coverage-%p-%m.profraw
5651

52+
- name: Download grcov
53+
run: |
54+
curl -sL https://github.com/mozilla/grcov/releases/download/v0.8.18/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf -
55+
chmod +x ./grcov
56+
5757
- name: Generate the coverage reports
5858
run: |
5959
./grcov . -s . --binary-path ./target/debug/deps \

0 commit comments

Comments
 (0)