A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

57 lines
1.2 KiB

  1. # This config file is used by appveyor.com to build Windows release binaries
  2. version: 0.4.1.dev0-b{build}
  3. branches:
  4. only:
  5. - master
  6. skip_tags: true
  7. environment:
  8. global:
  9. # See: http://stackoverflow.com/a/13751649/163740
  10. WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd"
  11. matrix:
  12. - PYTHON: "C:\\Python27"
  13. PYTHON_VERSION: "2.7.10"
  14. PYTHON_ARCH: "32"
  15. - PYTHON: "C:\\Python27-x64"
  16. PYTHON_VERSION: "2.7.10"
  17. PYTHON_ARCH: "64"
  18. - PYTHON: "C:\\Python33"
  19. PYTHON_VERSION: "3.3.6"
  20. PYTHON_ARCH: "32"
  21. - PYTHON: "C:\\Python33-x64"
  22. PYTHON_VERSION: "3.3.6"
  23. PYTHON_ARCH: "64"
  24. - PYTHON: "C:\\Python34"
  25. PYTHON_VERSION: "3.4.3"
  26. PYTHON_ARCH: "32"
  27. - PYTHON: "C:\\Python34-x64"
  28. PYTHON_VERSION: "3.4.3"
  29. PYTHON_ARCH: "64"
  30. install:
  31. - "powershell scripts\\win_install.ps1"
  32. build_script:
  33. - "%WRAPPER% %PYTHON%\\python setup.py build"
  34. test_script:
  35. - "%WRAPPER% %PYTHON%\\python setup.py -q test"
  36. after_test:
  37. - "%WRAPPER% %PYTHON%\\python setup.py bdist_wheel"
  38. artifacts:
  39. - path: dist\*
  40. deploy: off