From e32bd8cdaee166723972e80959d492e60b01572c Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 3 May 2023 17:17:02 +0200 Subject: [PATCH] ci: Create RelWithDebInfo builds instead of Debug --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb09520..6baa719 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -336,7 +336,7 @@ jobs: -DCMAKE_SYSTEM_VERSION="${{ matrix.CMAKE_SYSTEM_VERSION }}" \ -DCMAKE_BUILD_TYPE="${{ env.CMAKE_BUILD_TYPE }}" \ -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/build/ci/install" \ - -DPACKAGE_NAME="streamfx-${{ matrix.package_name }}-debug" \ + -DPACKAGE_NAME="streamfx-${{ matrix.package_name }}" \ -DPACKAGE_PREFIX="${{ github.workspace }}/build/package" \ -DENABLE_CLANG=TRUE -DCLANG_PATH="${{ env.CLANG_PATH }}" \ -DENABLE_PROFILING=ON \ @@ -344,6 +344,7 @@ jobs: -DQt_DIR="${{ github.workspace }}/build/qt" \ -DFFmpeg_DIR="${{ github.workspace }}/build/obsdeps" \ -DCURL_DIR="${{ github.workspace }}/build/obsdeps" + - name: "Build: Debug" continue-on-error: true shell: bash @@ -351,11 +352,11 @@ jobs: CMAKE_BUILD_TYPE: "Debug" run: | if [[ "${{ matrix.runner }}" = windows* ]]; then - cmake --build "build/ci" --config ${{ env.CMAKE_BUILD_TYPE }} --target install + cmake --build "build/ci" --config ${{ env.CMAKE_BUILD_TYPE }} --target StreamFX elif [[ "${{ matrix.runner }}" = ubuntu* ]]; then - cmake --build "build/ci" --config ${{ env.CMAKE_BUILD_TYPE }} --target install + cmake --build "build/ci" --config ${{ env.CMAKE_BUILD_TYPE }} --target StreamFX elif [[ "${{ matrix.runner }}" = macos* ]]; then - cmake --build "build/ci" --config ${{ env.CMAKE_BUILD_TYPE }} --target install + cmake --build "build/ci" --config ${{ env.CMAKE_BUILD_TYPE }} --target StreamFX fi - name: "Build: Release" shell: bash