ci: Create RelWithDebInfo builds instead of Debug
This commit is contained in:
parent
132ddc1d51
commit
e32bd8cdae
|
|
@ -336,7 +336,7 @@ jobs:
|
||||||
-DCMAKE_SYSTEM_VERSION="${{ matrix.CMAKE_SYSTEM_VERSION }}" \
|
-DCMAKE_SYSTEM_VERSION="${{ matrix.CMAKE_SYSTEM_VERSION }}" \
|
||||||
-DCMAKE_BUILD_TYPE="${{ env.CMAKE_BUILD_TYPE }}" \
|
-DCMAKE_BUILD_TYPE="${{ env.CMAKE_BUILD_TYPE }}" \
|
||||||
-DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/build/ci/install" \
|
-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" \
|
-DPACKAGE_PREFIX="${{ github.workspace }}/build/package" \
|
||||||
-DENABLE_CLANG=TRUE -DCLANG_PATH="${{ env.CLANG_PATH }}" \
|
-DENABLE_CLANG=TRUE -DCLANG_PATH="${{ env.CLANG_PATH }}" \
|
||||||
-DENABLE_PROFILING=ON \
|
-DENABLE_PROFILING=ON \
|
||||||
|
|
@ -344,6 +344,7 @@ jobs:
|
||||||
-DQt_DIR="${{ github.workspace }}/build/qt" \
|
-DQt_DIR="${{ github.workspace }}/build/qt" \
|
||||||
-DFFmpeg_DIR="${{ github.workspace }}/build/obsdeps" \
|
-DFFmpeg_DIR="${{ github.workspace }}/build/obsdeps" \
|
||||||
-DCURL_DIR="${{ github.workspace }}/build/obsdeps"
|
-DCURL_DIR="${{ github.workspace }}/build/obsdeps"
|
||||||
|
|
||||||
- name: "Build: Debug"
|
- name: "Build: Debug"
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
@ -351,11 +352,11 @@ jobs:
|
||||||
CMAKE_BUILD_TYPE: "Debug"
|
CMAKE_BUILD_TYPE: "Debug"
|
||||||
run: |
|
run: |
|
||||||
if [[ "${{ matrix.runner }}" = windows* ]]; then
|
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
|
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
|
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
|
fi
|
||||||
- name: "Build: Release"
|
- name: "Build: Release"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue