From fe70b1de6641679ba52167c5d2e6daa06ed52292 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Tue, 31 Aug 2021 21:04:37 +0200 Subject: [PATCH] CI: Adding the console host on the windows build --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c6f063b7..226c61be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,10 @@ jobs: uses: ilammy/msvc-dev-cmd@v1 - name: Select the project to build shell: bash - run: echo "PROJECT=$([ "${{runner.os}}" == "Windows" ] && echo Kyoo.Host.WindowsTrait || echo Kyoo.Host.Console)" >> $GITHUB_ENV + run: | + echo "PROJECT=$([ "${{runner.os}}" == "Windows" ] + && echo " -p:IncludeConsole=true Kyoo.Host.WindowsTrait" + || echo Kyoo.Host.Console)" >> $GITHUB_ENV - name: Build the app env: INCLUDE: ${{env.INCLUDE}};C:\Program Files\FFmpeg\include