Skip to content

Minor improvement in code and test #29

Minor improvement in code and test

Minor improvement in code and test #29

name: Gcc9_Gtest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug
COMPILER_NAME: gcc9
jobs:
Gtest-gcc-9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo sh .github/setup.sh
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build/${{env.COMPILER_NAME}} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_WITH_DLT:BOOL=ON -DBUILD_WITH_TEST:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_EXAMPLES:BOOL=ON -DCMAKE_TOOLCHAIN_FILE=toolchains/linux_gcc_9.cmake
- name: Build
run: cmake --build ${{github.workspace}}/build/${{env.COMPILER_NAME}} --config ${{env.BUILD_TYPE}}
- name: Network Setup
run: sudo sh tools/setup_network_interface.sh
- name: Test
working-directory: ${{github.workspace}}/build/${{env.COMPILER_NAME}}/test
run: |
export DLT_LOCAL_PRINT_MODE=FORCE_ON
export DLT_INITIAL_LOG_LEVEL="::6"
./gtest-diag-client-lib --gtest_output="xml:test-report.xml"
- name: Archive test results
uses: actions/upload-artifact@v3
with:
name: test-run-report
path: ${{github.workspace}}/build/${{env.COMPILER_NAME}}/test/test-report.xml