Skip to content

Commit

Permalink
Use g++4.9 for all Node >= 10 in Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Apr 25, 2019
1 parent f4eebc8 commit 480250c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -80,7 +80,7 @@ before_install:
- echo $TRAVIS_NODE_VERSION
- npm config set python `which python`
- if [ $TRAVIS_OS_NAME == "linux" ]; then
if [[ $(node -v) =~ v1[01] ]]; then
if [[ $(node -v) =~ v[1-9][0-9] ]]; then
export CC="gcc-4.9";
export CXX="g++-4.9";
export LINK="gcc-4.9";
Expand Down

0 comments on commit 480250c

Please sign in to comment.