.travis.yml 547 B

12345678910111213141516171819202122232425262728293031323334
  1. sudo: false
  2. language: node_js
  3. node_js:
  4. - 6
  5. addons:
  6. apt:
  7. sources:
  8. - ubuntu-toolchain-r-test
  9. packages:
  10. - g++-4.8
  11. cache:
  12. directories:
  13. - node_modules
  14. env:
  15. global:
  16. - CXX=g++-4.8
  17. matrix:
  18. - BROWSER=chrome BVER=stable
  19. before_script:
  20. - ./node_modules/travis-multirunner/setup.sh
  21. - export DISPLAY=:99.0
  22. - sh -e /etc/init.d/xvfb start
  23. script:
  24. - npm run test-travis
  25. after_failure:
  26. - for file in *.log; do echo $file; echo "======================"; cat $file; done || true
  27. notifications:
  28. email:
  29. -