Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ branches:
only:
- master
- 1.4
image: Visual Studio 2014 CTP4
image: Visual Studio 2022

environment:
matrix:
- PLATFORM: x64
CONFIGURATION: Release
- PLATFORM: x86
CONFIGURATION: Release
APPVEYOR_RDP_PASSWORD: nixioBuild@av

init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

install:
- cmd: >-
choco install nsis.install -version 2.49 -y --ignore-checksums
Expand All @@ -24,6 +27,9 @@ build_script:

ctest -VV --output-on-failure -S .appveyor.ctest

on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

after_build:
- cmd: cmake --build .\build --config %CONFIGURATION% --target PACKAGE

Expand Down