mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-06 08:46:42 +08:00
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.
28 lines
752 B
YAML
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
|