Skip to content

Add more compilers to appveyor config #101

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

Merged
Merged
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
24 changes: 20 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
version: 1.6.0.{build}

os:
- Windows Server 2012 R2

install:
environment:
matrix:

- CMAKE_GENERATOR: Visual Studio 9 2008
- CMAKE_GENERATOR: Visual Studio 10 2010
- CMAKE_GENERATOR: Visual Studio 11 2012
- CMAKE_GENERATOR: Visual Studio 12 2013
- CMAKE_GENERATOR: Visual Studio 14 2015

before_build:
# Generate solution files using cmake, in 'builds' directory.
# No need to create it because it's part of the repo.
- cd builds && cmake -G "Visual Studio 12" ../ && cd ..
- pushd builds && cmake -G "%CMAKE_GENERATOR%" ..\ && popd

configuration:
- Debug
- Release

build:
project: builds/UnitTest++.sln
build_script:
- pushd builds && cmake --build . && popd

matrix:
fast_finish: true