diff options
author | Wouter van Oortmerssen <wvo@google.com> | 2016-07-27 17:34:00 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <wvo@google.com> | 2016-07-27 18:38:27 -0700 |
commit | f624065eaa0c05f65dc0fcd4439ccda10cbef592 (patch) | |
tree | 325e9b04a24c98011c211c5f8dc94242e33a01ea /appveyor.yml | |
parent | 03adfa7b1a4b8f955ee82d238f0ca6759d843709 (diff) | |
download | flatbuffers-f624065eaa0c05f65dc0fcd4439ccda10cbef592.tar.gz flatbuffers-f624065eaa0c05f65dc0fcd4439ccda10cbef592.tar.bz2 flatbuffers-f624065eaa0c05f65dc0fcd4439ccda10cbef592.zip |
Added AppVeyor CI.
Change-Id: I01cf630026e25382b585785b471bad21153338f6
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..63fc12d8 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ +branches: + only: + - master + +os: Visual Studio 2015 + +platform: + - x86 + - x64 + +configuration: + - Debug + - Release + +before_build: + - cmake -G"Visual Studio 10 2010" + +build: + project: ALL_BUILD.vcxproj + +#test_script: +# - Debug/flattests.exe + +#artifacts: +# - path: Release/flatc.exe +# name: flatc.exe |