mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 09:04:38 +00:00
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:
parent
222f476f0e
commit
4062a1bbbd
3 changed files with 11 additions and 21 deletions
10
.github/workflows/build-linux-gcc.yml
vendored
10
.github/workflows/build-linux-gcc.yml
vendored
|
|
@ -44,16 +44,6 @@ jobs:
|
||||||
cxx: "g++",
|
cxx: "g++",
|
||||||
generator: "Ninja",
|
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:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
|
||||||
18
.github/workflows/build-windows-msvc.yml
vendored
18
.github/workflows/build-windows-msvc.yml
vendored
|
|
@ -31,10 +31,10 @@ jobs:
|
||||||
cmake_args: "",
|
cmake_args: "",
|
||||||
compiler_family: "msvc",
|
compiler_family: "msvc",
|
||||||
msvc_arch: "amd64",
|
msvc_arch: "amd64",
|
||||||
can_test: true,
|
can_test: false,
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Windows MSVC Visual Studio",
|
name: "Windows MSVC Visual Studio 2022",
|
||||||
os: "windows-2022",
|
os: "windows-2022",
|
||||||
build_type: "Release",
|
build_type: "Release",
|
||||||
cc: "cl",
|
cc: "cl",
|
||||||
|
|
@ -43,17 +43,17 @@ jobs:
|
||||||
cmake_args: "",
|
cmake_args: "",
|
||||||
compiler_family: "msvc",
|
compiler_family: "msvc",
|
||||||
msvc_arch: "amd64",
|
msvc_arch: "amd64",
|
||||||
can_test: true,
|
can_test: false,
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Windows Clang-cl",
|
name: "Windows MSVC Visual Studio 2026",
|
||||||
os: "windows-latest",
|
os: "windows-latest",
|
||||||
build_type: "Release",
|
build_type: "Release",
|
||||||
cc: "clang-cl",
|
cc: "cl",
|
||||||
cxx: "clang-cl",
|
cxx: "cl",
|
||||||
generator: "Ninja",
|
generator: "Visual Studio 18 2026",
|
||||||
cmake_args: "",
|
cmake_args: "",
|
||||||
compiler_family: "clang-cl",
|
compiler_family: "msvc",
|
||||||
msvc_arch: "amd64",
|
msvc_arch: "amd64",
|
||||||
can_test: true,
|
can_test: true,
|
||||||
}
|
}
|
||||||
|
|
@ -63,7 +63,7 @@ jobs:
|
||||||
build_type: "Release",
|
build_type: "Release",
|
||||||
cc: "cl",
|
cc: "cl",
|
||||||
cxx: "cl",
|
cxx: "cl",
|
||||||
generator: "Visual Studio 17 2022",
|
generator: "Visual Studio 18 2026",
|
||||||
cmake_args: "-A ARM64",
|
cmake_args: "-A ARM64",
|
||||||
compiler_family: "msvc",
|
compiler_family: "msvc",
|
||||||
msvc_arch: "amd64_arm64",
|
msvc_arch: "amd64_arm64",
|
||||||
|
|
|
||||||
|
|
@ -620,8 +620,8 @@ if (MSVC)
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_options(${TORQUE_APP_NAME} PRIVATE
|
target_link_options(${TORQUE_APP_NAME} PRIVATE
|
||||||
$<$<CONFIG:Debug>:/DEBUG:FASTLINK /INCREMENTAL>
|
$<$<CONFIG:Debug>:/DEBUG:FULL /INCREMENTAL>
|
||||||
$<$<CONFIG:RelWithDebInfo>:/INCREMENTAL /DEBUG:FASTLINK /OPT:REF /OPT:ICF>
|
$<$<CONFIG:RelWithDebInfo>:/INCREMENTAL /DEBUG:FULL /OPT:REF /OPT:ICF>
|
||||||
$<$<CONFIG:Release>:/INCREMENTAL>
|
$<$<CONFIG:Release>:/INCREMENTAL>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue