better-enums/appveyor.yml
Anton Bachin 7cfd738c1a Included VC2008 in AppVeyor and local testing.
Also reordered compilers so that the very first tested are the ones
that support the most configurations, then immediately followed by
those which are the most likely to fail. Typically, this would be the
oldest ones, or the compiler versions that were the first to support
some major features.
2015-07-08 09:25:48 -05:00

28 lines
752 B
YAML

version: "{build}"
branches:
except:
- gh-pages
- traits
skip_tags : true
shallow_clone: true
os: Visual Studio 2015 RC
install:
- choco -y install cyg-get
- cyg-get make
- git clone --depth 1 https://github.com/CxxTest/cxxtest.git
build_script:
- set CL=/I C:\projects\better-enums\cxxtest
- set PATH=%PATH%;C:\projects\better-enums\cxxtest\bin;C:\tools\cygwin\bin
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cd test
- make TITLE=vc2015 COMPILER="Visual Studio 14 2015" ms
- make TITLE=vc2008 COMPILER="Visual Studio 9 2008" ms
- make TITLE=vc2010 COMPILER="Visual Studio 10 2010" ms
- make TITLE=vc2012 COMPILER="Visual Studio 11 2012" ms
- make TITLE=vc2013 COMPILER="Visual Studio 12 2013" ms