Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More accurate coverage #258

Merged
merged 2 commits into from
Jul 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
strategy:
matrix:
include:
- build_type: Release
- build_type: Debug

env:
EXTERNAL_ROOT: /home/runner/3party
Expand Down Expand Up @@ -149,13 +149,13 @@ jobs:
- name: Install LCOV
shell: bash
run: |
if [ ! -f "$HOME/.lcov/local/bin/lcov" ]; then
if [ ! -f "$HOME/.lcov/usr/local/bin/lcov" ]; then
mkdir $HOME/.lcov-build || true;
cd $HOME/.lcov-build;
wget https://github.com/linux-test-project/lcov/releases/download/v1.15/lcov-1.15.tar.gz;
tar -xzf lcov-1.15.tar.gz;
wget https://github.com/linux-test-project/lcov/releases/download/v1.16/lcov-1.16.tar.gz;
tar -xzf lcov-1.16.tar.gz;
mkdir -p $HOME/.lcov || true;
DESTDIR=$HOME/.lcov make -C lcov-1.15/ install;
DESTDIR=$HOME/.lcov make -C lcov-1.16/ install;
fi
echo "##[set-output name=bin;]$(echo $HOME/.lcov/usr/local/bin/lcov)"
id: lcov
Expand Down