Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Use g++4.9 for Node 12 in Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Apr 25, 2019
1 parent f09cd3e commit 9d820c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,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) =~ v1[\d] ]]; then
export CC="gcc-4.9";
export CXX="g++-4.9";
export LINK="gcc-4.9";
Expand Down

0 comments on commit 9d820c1

Please sign in to comment.