Skip to content

Commit

Permalink
Include multithread test in Ubuntu CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-webb committed Oct 19, 2023
1 parent e058bdd commit 85fc49e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/log4cxx-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,31 @@ jobs:
fmt: OFF
qt: ON
odbc: OFF
multithread : OFF
- name: ubuntu20-clang
os: ubuntu-20.04
cxx: clang++
cc: clang
fmt: ON
qt: OFF
odbc: ON
multithread : OFF
- name: ubuntu22-gcc
os: ubuntu-22.04
cxx: g++
cc: gcc
fmt: OFF
qt: OFF
odbc: OFF
multithread : ON
- name: ubuntu22-clang
os: ubuntu-22.04
cxx: clang++
cc: clang
fmt: ON
qt: OFF
odbc: OFF
multithread : ON

steps:
- uses: actions/checkout@v3
Expand All @@ -73,7 +77,7 @@ jobs:
cd main
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.cc }} -DLOG4CXX_ENABLE_ODBC=${{ matrix.odbc }} -DLOG4CXX_QT_SUPPORT=${{ matrix.qt }} ..
cmake -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.cc }} -DLOG4CXX_ENABLE_ODBC=${{ matrix.odbc }} -DLOG4CXX_QT_SUPPORT=${{ matrix.qt }} -DENABLE_MULTITHREAD_TEST=${{ matrix.multithread }} ..
cmake --build .
- name: run unit tests
Expand Down

0 comments on commit 85fc49e

Please sign in to comment.