From 088c308bdd309cd689f73d676c5a723e0968c9bf Mon Sep 17 00:00:00 2001 From: FibreFoX Date: Sat, 24 Aug 2024 18:23:45 +0200 Subject: [PATCH] add debug symbols for local debugging --- .github/workflows/build-with-github.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-with-github.yml b/.github/workflows/build-with-github.yml index abf399d..caf6cb3 100644 --- a/.github/workflows/build-with-github.yml +++ b/.github/workflows/build-with-github.yml @@ -30,10 +30,10 @@ jobs: - name: build binaries if: ${{ matrix.os != 'macos-latest' }} run: | - scons target=template_debug arch=x86_32 - scons target=template_release arch=x86_32 - scons target=template_debug arch=x86_64 - scons target=template_release arch=x86_64 + scons target=template_debug arch=x86_32 debug_symbols=yes + scons target=template_release arch=x86_32 debug_symbols=yes + scons target=template_debug arch=x86_64 debug_symbols=yes + scons target=template_release arch=x86_64 debug_symbols=yes - name: build MacOS binaries if: ${{ matrix.os == 'macos-latest' }} run: |