Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[appveyor] bump vs version, use preinstalled boost #842

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
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