-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8ab3e9
commit 44ab3a8
Showing
3 changed files
with
47 additions
and
12 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
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: Configure DLT Logging | ||
run: | | ||
export DLT_LOCAL_PRINT_MODE=FORCE_ON | ||
export DLT_INITIAL_LOG_LEVEL="::6" | ||
- 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" | ||
ls . | ||
- name: Archive test results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: test-run-report | ||
path: ${{github.workspace}}/build/${{env.COMPILER_NAME}}/test/test-report.html |