Merge pull request #5026 from npoltorapavlo/RDK-47994-rfc #2
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
name: L0-PersistentStore | |
on: | |
push: | |
paths: | |
- PersistentStore/** | |
pull_request: | |
paths: | |
- PersistentStore/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{github.repository}} | |
- name: Install valgrind, coverage, cmake | |
run: | | |
sudo apt update | |
sudo apt install -y valgrind lcov cmake | |
- name: Build Thunder | |
working-directory: ${{github.workspace}} | |
run: sh +x ${GITHUB_REPOSITORY}/.github/workflows/BuildThunder.sh | |
- name: Build | |
working-directory: ${{github.workspace}} | |
run: | | |
cmake -S ${GITHUB_REPOSITORY}/PersistentStore/l0test -B build/persistentstorel0test -DCMAKE_INSTALL_PREFIX="install/usr" -DCMAKE_CXX_FLAGS="--coverage -Wall -Werror" | |
cmake --build build/persistentstorel0test --target install | |
- name: Run | |
working-directory: ${{github.workspace}} | |
run: PATH=${PWD}/install/usr/bin:${PATH} LD_LIBRARY_PATH=${PWD}/install/usr/lib:${LD_LIBRARY_PATH} valgrind --tool=memcheck --log-file=valgrind_log --leak-check=yes --show-reachable=yes --track-fds=yes --fair-sched=try persistentstorel0test | |
- name: Generate coverage | |
working-directory: ${{github.workspace}} | |
run: | | |
lcov -c -o coverage.info -d build/persistentstorel0test | |
genhtml -o coverage coverage.info | |
- name: Upload artifacts | |
if: ${{ !env.ACT }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: | | |
coverage/ | |
valgrind_log | |
if-no-files-found: warn |