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.
 
 
 
 

66 lines
1.4 KiB

  1. # This config file is used by appveyor.com to build Windows release binaries
  2. version: 0.4.2-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. PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe"
  12. SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension"
  13. PYMOD: "%WRAPPER% %PYTHON%\\python -m"
  14. PYPI_USERNAME: "earwigbot"
  15. PYPI_PASSWORD:
  16. secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+
  17. matrix:
  18. - PYTHON: "C:\\Python27"
  19. PYTHON_VERSION: "2.7"
  20. PYTHON_ARCH: "32"
  21. - PYTHON: "C:\\Python27-x64"
  22. PYTHON_VERSION: "2.7"
  23. PYTHON_ARCH: "64"
  24. - PYTHON: "C:\\Python33"
  25. PYTHON_VERSION: "3.3"
  26. PYTHON_ARCH: "32"
  27. - PYTHON: "C:\\Python33-x64"
  28. PYTHON_VERSION: "3.3"
  29. PYTHON_ARCH: "64"
  30. - PYTHON: "C:\\Python34"
  31. PYTHON_VERSION: "3.4"
  32. PYTHON_ARCH: "32"
  33. - PYTHON: "C:\\Python34-x64"
  34. PYTHON_VERSION: "3.4"
  35. PYTHON_ARCH: "64"
  36. install:
  37. - "%PIP% install wheel twine"
  38. build_script:
  39. - "%SETUPPY% build"
  40. test_script:
  41. - "%SETUPPY% -q test"
  42. after_test:
  43. - "%SETUPPY% bdist_wheel"
  44. on_success:
  45. - "%PYMOD% twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%"
  46. artifacts:
  47. - path: dist\*
  48. deploy: off