File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -31,16 +31,19 @@ jobs:
31
31
cxx : clang++
32
32
odbc : OFF
33
33
qt : ON
34
+ multiprocess : OFF
34
35
- name : osx-14
35
36
os : macos-14
36
37
cxx : clang++
37
38
odbc : ON
38
39
qt : OFF
40
+ multiprocess : ON
39
41
- name : osx-g++
40
42
os : macos-latest
41
43
cxx : g++-14
42
44
odbc : OFF
43
45
qt : OFF
46
+ multiprocess : OFF
44
47
45
48
steps :
46
49
- uses : actions/checkout@v4
59
62
cd main
60
63
mkdir build
61
64
cd build
62
- cmake -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DLOG4CXX_ENABLE_ODBC=${{ matrix.odbc }} -DLOG4CXX_CFSTRING=ON -DCMAKE_BUILD_TYPE=Debug ..
65
+ cmake \
66
+ -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} \
67
+ -DLOG4CXX_ENABLE_ODBC=${{ matrix.odbc }} \
68
+ -DLOG4CXX_MULTIPROCESS_ROLLING_FILE_APPENDER=${{ matrix.multiprocess }} \
69
+ -DLOG4CXX_CFSTRING=ON \
70
+ -DCMAKE_BUILD_TYPE=Debug \
71
+ ..
63
72
cmake --build .
64
73
65
74
- name : run unit tests
You can’t perform that action at this time.
0 commit comments