appveyor.yml 730 B

123456789101112131415161718192021222324252627282930313233343536
  1. version: 1.6+{build}
  2. nuget:
  3. disable_publish_on_pr: true
  4. deploy: off
  5. # Test against this version of Node.js
  6. environment:
  7. global:
  8. nodejs_version: "0.12"
  9. matrix:
  10. - PYTHON: "C:\\Python27"
  11. PYTHON_VERSION: "2.7.x"
  12. PYTHON_ARCH: "32"
  13. # Install scripts. (runs after repo cloning)
  14. install:
  15. # Get the latest stable version of Node.js or io.js
  16. - ps: Install-Product node $env:nodejs_version
  17. - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  18. - pip --version
  19. # Post-install test scripts.
  20. test_script:
  21. # Output useful info for debugging.
  22. - node --version
  23. - npm --version
  24. - python --version
  25. # run tests
  26. - bash -c "./build ci"
  27. # Don't actually build.
  28. build: off