Added ci for SPDLOG_USE_STD_FORMAT=ON option

This commit is contained in:
gabime 2023-09-01 17:40:19 +03:00
parent 243a840da7
commit e6b894665c

View File

@ -13,7 +13,9 @@ jobs:
matrix: matrix:
config: config:
- { compiler: gcc, version: 11, build_type: Debug, cppstd: 20 } - { compiler: gcc, version: 11, build_type: Debug, cppstd: 20 }
- { compiler: gcc, version: 12, build_type: Release, cppstd: 20 } - { compiler: gcc, version: 13, build_type: Release, cppstd: 20 }
- { compiler: gcc, version: 13, build_type: Release, cppstd: 20, std_format: OFF }
- { compiler: gcc, version: 13, build_type: Release, cppstd: 20, std_format: ON }
- { compiler: clang, version: 15, build_type: Debug, cppstd: 20, asan: ON } - { compiler: clang, version: 15, build_type: Debug, cppstd: 20, asan: ON }
- { compiler: clang, version: 15, build_type: Release, cppstd: 20, asan: OFF } - { compiler: clang, version: 15, build_type: Release, cppstd: 20, asan: OFF }
container: container:
@ -49,7 +51,8 @@ jobs:
-DSPDLOG_BUILD_BENCH=OFF \ -DSPDLOG_BUILD_BENCH=OFF \
-DSPDLOG_BUILD_TESTS=ON \ -DSPDLOG_BUILD_TESTS=ON \
-DSPDLOG_BUILD_TESTS_HO=OFF \ -DSPDLOG_BUILD_TESTS_HO=OFF \
-DSPDLOG_SANITIZE_ADDRESS=${{ matrix.config.asan || 'ON' }} -DSPDLOG_SANITIZE_ADDRESS=${{ matrix.config.asan || 'OFF' }} \
-DSPDLOG_USE_STD_FORMAT=${{ matrix.config.std_format || 'OFF' }} \
make -j2 make -j2
export ASAN_OPTIONS=alloc_dealloc_mismatch=0 export ASAN_OPTIONS=alloc_dealloc_mismatch=0
ctest -j2 --output-on-failure ctest -j2 --output-on-failure