diff options
author | Sergei Nikulov <sergey.nikulov@gmail.com> | 2015-09-17 16:34:47 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-09-26 23:57:36 +0200 |
commit | 4f037367ed69b77e14953fe88d8c0497782c0aab (patch) | |
tree | 21318739026fbef74de3a4d2b70164563e6fc3bf /appveyor.yml | |
parent | 32fc638ddf046d501abc2a58c91c3e934caf303a (diff) | |
download | curl-4f037367ed69b77e14953fe88d8c0497782c0aab.tar.gz |
CI: Added AppVeyor-CI for curl
Closes #439
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..42eb392be --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +version: 7.45.0.{build} + +environment: + matrix: + - PRJ_GEN: "Visual Studio 11 2012 Win64" + BDIR: msvc2012 + PRJ_CFG: Release + - PRJ_GEN: "Visual Studio 12 2013 Win64" + BDIR: msvc2013 + PRJ_CFG: Release + - PRJ_GEN: "Visual Studio 14 2015 Win64" + BDIR: msvc2015 + PRJ_CFG: Release + +build_script: + - mkdir build.%BDIR% + - cd build.%BDIR% + - cmake .. -G"%PRJ_GEN%" + - cmake --build . --config %PRJ_CFG% --clean-first |