12345678910111213141516171819202122232425262728293031323334 |
- sudo: false
- language: node_js
- node_js:
- - 6
- addons:
- apt:
- sources:
- - ubuntu-toolchain-r-test
- packages:
- - g++-4.8
- cache:
- directories:
- - node_modules
- env:
- global:
- - CXX=g++-4.8
- matrix:
- - BROWSER=chrome BVER=stable
- before_script:
- - ./node_modules/travis-multirunner/setup.sh
- - export DISPLAY=:99.0
- - sh -e /etc/init.d/xvfb start
- script:
- - npm run test-travis
- after_failure:
- - for file in *.log; do echo $file; echo "======================"; cat $file; done || true
- notifications:
- email:
- -
|