Skip to content

Commit

Permalink
Add Node.js to Travis tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAlbin committed Apr 30, 2016
1 parent 277a9be commit 6badbd2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,23 @@ node_js:
- '0.12'
- '4'
- '5'
- '6'
script: npm test

# Eyeglass requires this to install on Node.js under Travis. *sigh*
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-4.7";
export CXX="g++-4.7";
export LINK="gcc-4.7";
export LINKXX="g++-4.7";
fi
- gcc --version
- g++ --version
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.7
- g++-4.7

0 comments on commit 6badbd2

Please sign in to comment.