Skip to content

RDK-45868:Coverity fixes - Phase 3b (keyActionMap) #1

RDK-45868:Coverity fixes - Phase 3b (keyActionMap)

RDK-45868:Coverity fixes - Phase 3b (keyActionMap) #1

Workflow file for this run

name: L1-Sqlite
on:
push:
paths:
- PersistentStore/sqlite/**
pull_request:
paths:
- PersistentStore/sqlite/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: rdkservices
- name: Install valgrind, coverage, cmake, sqlite
run: |
sudo apt update
sudo apt install -y valgrind lcov cmake libsqlite3-dev
- name: Build Thunder
working-directory: ${{github.workspace}}
run: sh +x rdkservices/.github/workflows/BuildThunder.sh
- name: Configure
working-directory: ${{github.workspace}}
run: cmake -S rdkservices/PersistentStore/sqlite/l1test -B build/sqlitel1test -DCMAKE_INSTALL_PREFIX="install/usr" -DCMAKE_CXX_FLAGS="--coverage -Wall -Werror"
- name: Build
working-directory: ${{github.workspace}}
run: cmake --build build/sqlitel1test --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 sqlitel1test
- name: Generate coverage
working-directory: ${{github.workspace}}
run: |
lcov -c -o coverage.info -d build/sqlitel1test
genhtml -o coverage coverage.info
- name: Upload artifacts
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
coverage/
valgrind_log
if-no-files-found: warn