Skip to content

Commit

Permalink
DROP: AppVeyor Release -> Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jgehrig committed Jun 2, 2021
1 parent 73aa9a3 commit 125743d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contrib/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ environment:
GENERATOR: Visual Studio 16
CMAKE_PATH_PREFIX: C:\Qt\5.15\msvc2019_64\lib\cmake
configuration:
- RelWithDebInfo
- Debug
matrix:
fast_finish: false
install:
Expand All @@ -32,14 +32,14 @@ build_script:
- echo %PATH%
- mkdir build
- cd build
- cmake -G "%GENERATOR%" -DCMAKE_PREFIX_PATH="%CMAKE_PATH_PREFIX%" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../INSTALL %EXTRA_CMAKE_ARGS% ..
- cmake --build . --config Release --target install
- cmake -G "%GENERATOR%" -DCMAKE_PREFIX_PATH="%CMAKE_PATH_PREFIX%" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../INSTALL %EXTRA_CMAKE_ARGS% ..
- cmake --build . --config Debug --target install
- cpack --verbose -G WIX
test_script:
- set PATH=%QTPATH%;%QTPATH%/bin;%PATH%
- echo %PATH%
- cd "%APPVEYOR_BUILD_FOLDER%"/build
- ctest -VV -C Release
- ctest -VV -C Debug
- ps: (Get-Item "$($env:APPVEYOR_BUILD_FOLDER)\INSTALL\bin\nvim-qt.exe").VersionInfo
artifacts:
- path: INSTALL
Expand All @@ -55,5 +55,5 @@ deploy:
prerelease: false
on:
appveyor_repo_tag: true
configuration: RelWithDebInfo
configuration: Debug
release_artifact: true

0 comments on commit 125743d

Please sign in to comment.