You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

appveyor.yml 808 B

12345678910111213141516171819202122232425262728293031323334353637
  1. version: '{branch}.{build}'
  2. os: Windows Server 2012 R2
  3. platform: x64
  4. # There should be a better way to set-up a build matrix.
  5. environment:
  6. matrix:
  7. - b_toolset: Windows7.1SDK
  8. b_config: Debug
  9. - b_toolset: Windows7.1SDK
  10. b_config: Release
  11. - b_toolset: v120
  12. b_config: Debug
  13. - b_toolset: v120
  14. b_config: Release
  15. - b_toolset: v140
  16. b_config: Debug
  17. - b_toolset: v140
  18. b_config: Release
  19. build_script:
  20. - cmake -T %b_toolset% -DCMAKE_BUILD_TYPE=%b_config% -DCMAKE_INSTALL_PREFIX=t_install .
  21. - cmake --build . --target install
  22. after_build:
  23. - cd t_install
  24. - 7z a ../json-c.win32.%b_toolset%.%b_config%.zip *
  25. artifacts:
  26. - path: json-c.win32.%b_toolset%.%b_config%.zip
  27. name: json-c.win32.%b_toolset%.%b_config%.zip