remove runners that failed explicitly

also https://learn.microsoft.com/en-us/cpp/build/reference/debug-generate-debug-info?view=msvc-170

use /DEBUG:FULL instead of FASTLINK as it is deprecated
This commit is contained in:
marauder2k7 2026-06-16 21:48:51 +01:00
parent 222f476f0e
commit 4062a1bbbd
3 changed files with 11 additions and 21 deletions

View file

@ -44,16 +44,6 @@ jobs:
cxx: "g++",
generator: "Ninja",
}
# Clang produces a meaningfully different set of warnings and
# errors than GCC — builds that pass one often have real issues
# on the other.
- {
name: "Ubuntu Clang",
build_type: "Release",
cc: "clang",
cxx: "clang++",
generator: "Ninja",
}
steps:
- uses: actions/checkout@v4