xgboost/appveyor.yml
RAMitchell e3a7f85f15 GPU plug-in improvements + basic Windows continuous integration (#1752)
* GPU Plugin: Reduce memory, improve performance, fix gcc compiler bug, add
out of memory exceptions

* Add basic Windows continuous integration for cmake VS2013, VS2015
2016-11-10 12:34:09 -08:00

24 lines
580 B
YAML

environment:
matrix:
- solution_name: C:/projects/xgboost/build2013/xgboost.sln
- solution_name: C:/projects/xgboost/build2015/xgboost.sln
platform:
- x64
configuration:
- Debug
- Release
install:
- git submodule update --init --recursive
before_build:
- mkdir build2013
- mkdir build2015
- cd build2013
- cmake .. -G"Visual Studio 12 2013 Win64"
- cd ../build2015
- cmake .. -G"Visual Studio 14 2015 Win64"
build_script:
- msbuild %solution_name%