Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2024-02-20 10:43:33 +1100
committerGitHub <noreply@github.com>2024-02-20 10:43:33 +1100
commite50842e48dd6faef940f0f7685aa7cd270f5b1e0 (patch)
treed3e4d4d3375dcbe355e885038f845942dee208a7 /.github
parent442347d82ee8ab5fb0575dafe4918e74541458a3 (diff)
Update build_windows.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_windows.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml
index ad92d65..f095a98 100644
--- a/.github/workflows/build_windows.yml
+++ b/.github/workflows/build_windows.yml
@@ -36,10 +36,10 @@ jobs:
Remove-Item "${{ github.workspace }}\dist" -Recurse
- name: Configure Release Build
- run: cmake -G "Visual Studio 17 2022" -A "X64" -S "${{ github.workspace }}/source" -B "${{ github.workspace }}/cmake-build-release" -DCMAKE_TOOLCHAIN_FILE="${Env:VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x64-windows -DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded$<$<CONFIG:Debug>:Debug>DLL" -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/install" -DCMAKE_VERBOSE_MAKEFILE=YES -DBUILD_TESTING=YES
+ run: cmake -G "Visual Studio 17 2022" -A "X64" -S "${{ github.workspace }}/source" -B "${{ github.workspace }}/cmake-build-relwithdebinfo" -DCMAKE_TOOLCHAIN_FILE="${Env:VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x64-windows -DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded$<$<CONFIG:Debug>:Debug>DLL" -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/install" -DCMAKE_VERBOSE_MAKEFILE=YES -DBUILD_TESTING=YES
- name: Build Release
- run: cmake --build "${{ github.workspace }}/cmake-build-release" --config "Release" --parallel
+ run: cmake --build "${{ github.workspace }}/cmake-build-relwithdebinfo" --config "RelWithDebInfo" --parallel
- name: Upload Artifacts
uses: actions/upload-artifact@v4