Removed clang with std::format from ci

This commit is contained in:
gabime 2023-09-16 20:18:31 +03:00
parent 8488b027e9
commit 89ccf2a6ab

View File

@ -21,7 +21,6 @@ jobs:
- { compiler: clang, version: 15, build_type: Release, cppstd: 17}
- { 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, std_format: ON }
container:
image: ${{ matrix.config.compiler == 'clang' && 'teeks99/clang-ubuntu' || matrix.config.compiler }}:${{ matrix.config.version }}
name: "${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }}, ${{ matrix.config.build_type }} DSPDLOG_USE_STD_FORMAT=${{ matrix.config.std_format || 'OFF' }})"