From 7e9e9ebec630505fe6297e0bd9d469fdc389c8be Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Sat, 18 Jun 2022 10:47:32 +0300 Subject: [PATCH] Revert "Use RelWithDebInfo" This reverts commit ace5f22342beee41a7d170ec7ac8c90dc932472b. --- .github/workflows/Build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 823c251..4be625f 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -73,8 +73,8 @@ jobs: # { name: MacOS 12 CLang, os: macOS-12, cc: clang, cxx: clang++, ver: null, arch: 64, generator: "Unix Makefiles", can-fail: true, artifact: NO, artifact-os: mac } - { name: Windows VS2019, os: windows-2019, cc: cl, cxx: cl, ver: null, arch: 32, generator: "Visual Studio 16 2019", can-fail: false, artifact: NO, artifact-os: windows } # { name: Windows VS2019, os: windows-2019, cc: cl, cxx: cl, ver: null, arch: 64, generator: "Visual Studio 16 2019", can-fail: true, artifact: NO, artifact-os: windows } - - { name: Windows VS2022, os: windows-2022, cc: cl, cxx, cl, ver: null, arch: 32, generator: "Visual Studio 17 2022", can-fail: false, artifact: Build/RelWithDebInfo/fallout2-ce.exe, artifact-os: windows } - # { name: Windows VS2022, os: windows-2022, cc: cl, cxx, cl, ver: null, arch: 64, generator: "Visual Studio 17 2022", can-fail: true, artifact: Build/RelWithDebInfo/fallout2-ce.exe, artifact-os: windows } + - { name: Windows VS2022, os: windows-2022, cc: cl, cxx, cl, ver: null, arch: 32, generator: "Visual Studio 17 2022", can-fail: false, artifact: Build/Release/fallout2-ce.exe, artifact-os: windows } + # { name: Windows VS2022, os: windows-2022, cc: cl, cxx, cl, ver: null, arch: 64, generator: "Visual Studio 17 2022", can-fail: true, artifact: Build/Release/fallout2-ce.exe, artifact-os: windows } steps: - name: Configure @@ -194,7 +194,7 @@ jobs: CXX: ${{ env.GHA_CXX }} - name: Build - run: cmake --build Build --config RelWithDebInfo && echo BUILD_OK=1 >> $GITHUB_ENV + run: cmake --build Build --config Release && echo BUILD_OK=1 >> $GITHUB_ENV continue-on-error: ${{ matrix.cfg.can-fail }} - name: Artifact prepare