Skip to content

Commit 41035a3

Browse files
authored
Merge pull request #460 from rustcoreutils/codecov
[CI] install awk for codecov
2 parents 5cca54b + 75b9ba3 commit 41035a3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/coverage-weekly.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ jobs:
2525
- name: Install cargo-llvm-cov
2626
uses: taiki-e/install-action@cargo-llvm-cov
2727

28+
- name: Install system deps (awk)
29+
run: |
30+
sudo apt-get update
31+
sudo apt-get install -y --no-install-recommends gawk
32+
command -v awk
33+
awk --version | head -n 1
34+
2835
- name: Generate LCOV (workspace)
2936
run: cargo llvm-cov --workspace --all-features --lcov --output-path lcov.info
3037

0 commit comments

Comments
 (0)