From d11ebbbdca2e964e43a15b422d20f91eff733b5f Mon Sep 17 00:00:00 2001 From: myst6re Date: Sun, 2 Feb 2025 17:36:01 +0100 Subject: [PATCH] Adding debug build --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebff6e34..aa463901 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -139,11 +139,15 @@ jobs: if: matrix.build_type == 'Debug' run: git clone -q --depth 1 --single-branch --branch continuous https://github.com/sithlord48/ff7tk.git ${{ env.ff7tk_path }} - - name: Build ff7tk (Debug) + - name: Remove .git ff7tk (Debug) if: matrix.build_type == 'Debug' shell: bash + run: rm -fr .git + working-directory: ${{ env.ff7tk_path }} + + - name: Build ff7tk (Debug) + if: matrix.build_type == 'Debug' run: | - rm -fr .git cmake -B ${{ env.ff7tk_build_path }} -DCMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ env.ff7tk_installation_path }} -DQT_DEFAULT_MAJOR_VERSION=${{ env.QT_MAJOR_VERSION }} ${{ matrix.cmake_extra_args }} cmake --build ${{ env.ff7tk_build_path }} --target install -j3 working-directory: ${{ env.ff7tk_path }}