]> git.proxmox.com Git - mirror_xterm.js.git/blame_incremental - .travis.yml
Remove comments from Travis config
[mirror_xterm.js.git] / .travis.yml
... / ...
CommitLineData
1language: node_js
2os:
3 - linux
4 - osx
5node_js:
6 - 6
7before_install:
8 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test ; fi
9 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
10 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq install g++-4.8 ; fi
11 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8 ; fi
12env:
13 matrix:
14 - NPM_COMMAND=lint
15 - NPM_COMMAND=test
16notifications:
17 email: false
18script: npm run $NPM_COMMAND
19after_success: npm run coveralls