mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-04 20:24:23 +02:00
chore(ci): enable debug symbols for debug builds
Exclude Windows as it leads to a "warning LNK4099: PDB '' was not found with 'constants.windows.template_debug.x86_64.obj' or at ''" error on subsequent runs.
This commit is contained in:
parent
e1000adbe5
commit
46f3aa12bf
2 changed files with 7 additions and 2 deletions
|
@ -56,4 +56,9 @@ services:
|
|||
- /bin/bash
|
||||
- -c
|
||||
- |
|
||||
scons target=template_$${TARGET:-debug} arch=$${ARCH:-x86_64}
|
||||
if [ -z "$$DEBUG_SYMBOLS" ]; then
|
||||
if [ "$$TARGET" == "debug" ]; then
|
||||
DEBUG_SYMBOLS=yes
|
||||
fi
|
||||
fi
|
||||
scons target=template_$${TARGET:-debug} arch=$${ARCH:-x86_64} debug_symbols=$${DEBUG_SYMBOLS:-no}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue