forked from ElementsProject/elements
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! ci: add codecov github action
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,14 @@ jobs: | |
coverage_report: | ||
name: Generate coverage report | ||
runs-on: ubuntu-latest | ||
env: | ||
PACKAGES: "lcov clang llvm python3-zmq qtbase5-dev qttools5-dev-tools libevent-dev bsdmainutils libboost-dev libdb5.3++-dev libminiupnpc-dev libnatpmp-dev libzmq3-dev libqrencode-dev libsqlite3-dev" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Build | ||
run: | | ||
sudo apt-get -y install lcov llvm | ||
sudo apt-get -y install $PACKAGES | ||
./autogen.sh | ||
./configure --enable-lcov --enable-lcov-branch-coverage --without-bdb CC=clang CXX=clang++ | ||
make -j4 total_coverage.info | ||
|