appveyor.yml 411 B

12345678910111213141516171819202122232425
  1. # appveyor file
  2. # http://www.appveyor.com/docs/appveyor-yml
  3. version: "{build}"
  4. os: Visual Studio 2015
  5. init:
  6. - git config --global core.autocrlf input
  7. platform:
  8. - x86
  9. - x64
  10. install:
  11. - cmd: SET PATH=C:\Program Files (x86)\MSBuild\14.0\bin\;%PATH%
  12. - cmd: SET PATH=C:\python27;%PATH%
  13. - cmd: python script/cibuild
  14. branches:
  15. only:
  16. - master
  17. # disable build and test pahses
  18. build: off
  19. test: off