builds godot
Diffstat (limited to '.github/actions/build-godot/action.yml')
| -rw-r--r-- | .github/actions/build-godot/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/build-godot/action.yml b/.github/actions/build-godot/action.yml index eb40b0c..23d7b07 100644 --- a/.github/actions/build-godot/action.yml +++ b/.github/actions/build-godot/action.yml @@ -52,7 +52,7 @@ runs: cores=$(nproc) || cores=$(sysctl -n hw.ncpu) [[ -n "${{ inputs.flags }}" ]] && scons_flags="${{ inputs.flags }}" [[ ${{ inputs.target }} == "editor" ]] && scons_flags="${scons_flags//disable_3d=yes/}" # remove disable_3d=yes if editor - [[ ${{ inputs.target }} == "editor" ]] && scons_flags="$scons_flags debug_symbols=yes" + [[ ${{ inputs.target }} == "editor" ]] && scons_flags="$scons_flags debug_symbols=no" [[ ${{ inputs.target }} != "editor" ]] && scons_flags="$scons_flags deprecated=no" scons -j$((cores+2)) p=${{ inputs.platform }} target=${{ inputs.target }} verbose=yes udev=yes dev_build=no lto=auto $scons_flags echo "compile done" |