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

coverage: upload report #999

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
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
11 changes: 8 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
branches:
- main
pull_request:
paths:
- 'library/common/**'
- 'test/**'
# paths:
# - 'library/common/**'
# - 'test/**'

jobs:
coverage:
Expand All @@ -26,3 +26,8 @@ jobs:
export CC=clang
export CXX=clang++
./envoy/test/run_envoy_bazel_coverage.sh //test/...
tar -czvf coverage.tar.gz generated/coverage
- uses: actions/upload-artifact@v1
with:
name: coverage.tar.gz
path: coverage.tar.gz
2 changes: 1 addition & 1 deletion ci/linux_ci_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo apt-get update

export DEBIAN_FRONTEND=noninteractive
sudo apt-get install -y wget software-properties-common make cmake git \
unzip bc libtool ninja-build automake zip time \
unzip bc libtool ninja-build automake zip time lcov \
apt-transport-https

# clang 8.
Expand Down