aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-05-03 15:50:11 +0200
committerJames McCoy <jamessan@jamessan.com>2017-05-03 20:28:54 -0400
commitb9dba14fa32f49b145d1d415f2e869140a2a6a5c (patch)
tree40d7bebf5cf0bcf556289f83cf84df91574d6df2
parent4f75e2f95c5ef327c72ead4a7b0f7bf8c25b56ba (diff)
downloadrneovim-b9dba14fa32f49b145d1d415f2e869140a2a6a5c.tar.gz
rneovim-b9dba14fa32f49b145d1d415f2e869140a2a6a5c.tar.bz2
rneovim-b9dba14fa32f49b145d1d415f2e869140a2a6a5c.zip
win: build: RelWithDebInfo
-rw-r--r--ci/build.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/build.bat b/ci/build.bat
index bc110396ef..c871c6b849 100644
--- a/ci/build.bat
+++ b/ci/build.bat
@@ -31,14 +31,14 @@ python3 -c "import neovim; print(str(neovim))" || goto :error
mkdir .deps
cd .deps
-cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..\third-party\ || goto :error
+cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..\third-party\ || goto :error
mingw32-make VERBOSE=1 || goto :error
cd ..
:: Build Neovim
mkdir build
cd build
-cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUSTED_OUTPUT_TYPE=nvim -DGPERF_PRG="C:\msys64\usr\bin\gperf.exe" .. || goto :error
+cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUSTED_OUTPUT_TYPE=nvim -DGPERF_PRG="C:\msys64\usr\bin\gperf.exe" .. || goto :error
mingw32-make VERBOSE=1 || goto :error
bin\nvim --version || goto :error
@@ -46,8 +46,8 @@ bin\nvim --version || goto :error
mingw32-make functionaltest VERBOSE=1 || goto :error
:: Build artifacts
-cpack -G ZIP -C Release
-if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C Release
+cpack -G ZIP -C RelWithDebInfo
+if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C RelWithDebInfo
goto :EOF
:error