1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-10 23:44:29 +00:00

Add gcc 12 and NONASCII flags to ubuntu build matrix. (#262)

This commit is contained in:
talisein 2023-05-13 01:49:24 -07:00 committed by GitHub
parent 8111a0d17d
commit d4fa0c3dd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 24 deletions

View file

@ -24,7 +24,7 @@ jobs:
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
cmake --build . -j 4 --config Release
ctest --output-on-failure -C Release
- name: Build Debug
@ -33,7 +33,7 @@ jobs:
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug
cmake --build . -j 4 --config Debug
ctest --output-on-failure -C Debug
- name: Bazel Test