RDKTV-31830 : split Cloud Store in a separate plugin #6
Workflow file for this run
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-SecureStore-grpc | |
on: | |
push: | |
paths: | |
- SecureStore/** | |
- .github/workflows/*SecureStore*.yml | |
pull_request: | |
paths: | |
- SecureStore/** | |
- .github/workflows/*SecureStore*.yml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{github.repository}} | |
- name: Install valgrind, coverage, cmake, protoc, grpc_cpp_plugin, grpc | |
run: | | |
sudo apt update | |
sudo apt install -y valgrind lcov cmake protobuf-compiler protobuf-compiler-grpc libgrpc++-dev | |
- 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}/SecureStore/grpc/l0test -B build/grpcl0test -DCMAKE_INSTALL_PREFIX="install" -DCMAKE_CXX_FLAGS="--coverage -Wall -Werror" | |
cmake --build build/grpcl0test --target install | |
- name: Run | |
working-directory: ${{github.workspace}} | |
run: PATH=${PWD}/install/bin:${PATH} LD_LIBRARY_PATH=${PWD}/install/lib:${LD_LIBRARY_PATH} valgrind --tool=memcheck --log-file=valgrind_log --leak-check=yes --show-reachable=yes --track-fds=yes --fair-sched=try grpcl0test | |
- name: Generate coverage | |
working-directory: ${{github.workspace}} | |
run: | | |
lcov -c -o coverage.info -d build/grpcl0test | |
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 |