update coverage action #2
Workflow file for this run
This file contains hidden or 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
on: pull_request | ||
name: Continuous Integration | ||
jobs: | ||
coverage_report: | ||
name: Generate coverage report | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
# ... Generate LCOV files or download it from a different job | ||
- name: Setup LCOV | ||
uses: hrishikesh-kadam/setup-lcov@v1 | ||
- name: Install gtest | ||
run: sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp lib/*.a /usr/lib && sudo ln -s /usr/lib/libgtest.a /usr/local/lib/libgtest.a && sudo ln -s /usr/lib/libgtest_main.a /usr/local/lib/libgtest_main.a | ||
- name: Write files | ||
env: | ||
FILE_ONE: ${{ secrets.KRM_MAIN_FILE }} | ||
FILE_TWO: ${{ secrets.KRM_SCND_FILE }} | ||
run: | | ||
echo "${FILE_ONE}" | base64 --decode > ${HOME}/key.pem | | ||
echo "${FILE_TWO}" | base64 --decode > ${HOME}/scert.crt | ||
- name: Build and test | ||
run: | | ||
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release | ||
cmake --build ${{github.workspace}}/build --config Release | ||
ctest -VV --test-dir ${{github.workspace}}/build -C Release | ||
- name: Run lcov | ||
run: | | ||
lcov -c -d . -o lcov.info | ||
- name: Report code coverage | ||
uses: zgosalvez/github-actions-report-lcov@v3 | ||
with: | ||
coverage-files: coverage/lcov.*.info | ||
minimum-coverage: 90 | ||
artifact-name: code-coverage-report | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
update-comment: true |