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

Commit f1cc0d3

Browse files
authoredOct 23, 2019
Use GCC 6 for Node 12 binaries (#2767)
Use GCC 6 for Node 12 binaries
2 parents e84c6a9 + 3838eae commit f1cc0d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ before_install:
8787
- echo $TRAVIS_NODE_VERSION
8888
- npm config set python `which python`
8989
- if [ $TRAVIS_OS_NAME == "linux" ]; then
90-
if [[ $(node -v) =~ v13 ]]; then
90+
if [[ $(node -v) =~ v1[23] ]]; then
9191
export CC="gcc-6";
9292
export CXX="g++-6";
9393
export LINK="gcc-6";
9494
export LINKXX="g++-6";
95-
elif [[ $(node -v) =~ v[1-9][0-9] ]]; then
95+
elif [[ $(node -v) =~ v1[01] ]]; then
9696
export CC="gcc-4.9";
9797
export CXX="g++-4.9";
9898
export LINK="gcc-4.9";

0 commit comments

Comments
 (0)