We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45bb4c1 commit c830d46Copy full SHA for c830d46
1 file changed
.github/workflows/ci-linux.yml
@@ -18,8 +18,10 @@ jobs:
18
with:
19
access_token: ${{ github.token }}
20
21
- - name: Intall llvm-cov
22
- run: sudo apt-get install llvm-10
+ - name: Find llvm-cov
+ run: find / -iname llvm-cov
23
+ # - name: Intall llvm-cov
24
+ # run: sudo apt-get install llvm-10
25
26
- uses: actions/checkout@v2
27
- name: Build
@@ -32,5 +34,7 @@ jobs:
32
34
-instr-profile=.build/x86_64-unknown-linux-gnu/debug/codecov/default.profdata > info.lcov
33
35
- name: Print Codecov
36
run: cat info.lcov
- # - name: Upload Codecov
- # run: bash <(curl -s https://codecov.io/bash) -f info.lcov
37
+ # - name: Upload to codecov.io
38
+ # run: bash <(curl -s https://codecov.io/bash) -f info.lcov
39
+ # env:
40
+ # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments