Skip to content

Commit

Permalink
[ci] build RelWithDebInfo instead of Release
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Feb 8, 2021
1 parent b1b86df commit 7f87c55
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
strategy:
matrix:
os: [macos, windows]
build-type: [Release, Debug]
build-type: [RelWithDebInfo, Debug]
obs-version: [26.1.2]
# Qt versions taken from OBS Studio's `.github/workflow/main.yml`
include:
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
strategy:
matrix:
os: [macos, windows]
build-type: [Release, Debug]
build-type: [RelWithDebInfo, Debug]
prepare-packages:
name: Prepare packages
needs: [obs, xsplit-native, streamdeck, webui, xsplit-ts]
Expand Down Expand Up @@ -319,15 +319,15 @@ jobs:
- name: Prepare OBS plugins
working-directory: ${{runner.temp}}/artifacts
run: |
( cd obs-windows-Release/obs/; 7z a ${{runner.temp}}/final/obs-streaming-remote-win64.zip *)
( cd obs-macos-Release/obs/; 7z a ${{runner.temp}}/final/obs-streaming-remote-macos.zip *)
( cd obs-windows-RelWithDebInfo/obs/; 7z a ${{runner.temp}}/final/obs-streaming-remote-win64.zip *)
( cd obs-macos-RelWithDebInfo/obs/; 7z a ${{runner.temp}}/final/obs-streaming-remote-macos.zip *)
( cd obs-windows-Debug/obs/; 7z a ${{runner.temp}}/final/debug-obs-streaming-remote-win64.zip *)
( cd obs-macos-Debug/obs/; 7z a ${{runner.temp}}/final/debug-obs-streaming-remote-macos.zip *)
- name: Prepare combined XSplit plugins
working-directory: ${{runner.temp}}/artifacts
run: |
mkdir -p ${{runner.temp}}/xsplit-debug/plugin ${{runner.temp}}/xsplit-release/plugin
( cd xsplit-native-windows-Release/xsplit/; install * ${{runner.temp}}/xsplit-release )
( cd xsplit-native-windows-RelWithDebInfo/xsplit/; install * ${{runner.temp}}/xsplit-release )
( cd xsplit-native-windows-Debug/xsplit/; install * ${{runner.temp}}/xsplit-debug )
( cd xsplit-ts-production; rsync -av ./ ${{runner.temp}}/xsplit-release/plugin/ )
( cd xsplit-ts-development; rsync -av ./ ${{runner.temp}}/xsplit-debug/plugin/ )
Expand Down

0 comments on commit 7f87c55

Please sign in to comment.