disabled.appveyor.yml 940 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # http://www.appveyor.com/docs/appveyor-yml
  2. # Fix line endings in Windows. (runs before repo cloning)
  3. init:
  4. - git config --global core.autocrlf input
  5. # Test against these versions of Node.js.
  6. environment:
  7. matrix:
  8. - nodejs_version: "0.10"
  9. - nodejs_version: "0.8"
  10. - nodejs_version: "0.11"
  11. # Allow failing jobs for bleeding-edge Node.js versions.
  12. matrix:
  13. allow_failures:
  14. - nodejs_version: "0.11"
  15. # Install scripts. (runs after repo cloning)
  16. install:
  17. # Get the latest stable version of Node 0.STABLE.latest
  18. - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
  19. # Typical npm stuff.
  20. - npm install
  21. # Post-install test scripts.
  22. test_script:
  23. # Output useful info for debugging.
  24. - ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
  25. - cmd: npm test
  26. # Don't actually build.
  27. build: off
  28. # Set build version format here instead of in the admin panel.
  29. version: "{build}"