This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree 4 files changed +24
-3
lines changed
4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 16
16
- stage : platform-test
17
17
node_js : " node"
18
18
os : osx
19
+ - stage : platform-test
20
+ node_js : " 12"
21
+ os : linux
22
+ - stage : platform-test
23
+ node_js : " 12"
24
+ os : osx
19
25
- stage : platform-test
20
26
node_js : " 11"
21
27
os : linux
@@ -74,12 +80,19 @@ addons:
74
80
- g++-4.7
75
81
- gcc-4.9
76
82
- g++-4.9
83
+ - gcc-6
84
+ - g++-6
77
85
78
86
before_install :
79
87
- echo $TRAVIS_NODE_VERSION
80
88
- npm config set python `which python`
81
89
- if [ $TRAVIS_OS_NAME == "linux" ]; then
82
- if [[ $(node -v) =~ v[1-9][0-9] ]]; then
90
+ if [[ $(node -v) =~ v13 ]]; then
91
+ export CC="gcc-6";
92
+ export CXX="g++-6";
93
+ export LINK="gcc-6";
94
+ export LINKXX="g++-6";
95
+ elif [[ $(node -v) =~ v[1-9][0-9] ]]; then
83
96
export CC="gcc-4.9";
84
97
export CXX="g++-4.9";
85
98
export LINK="gcc-4.9";
@@ -94,8 +107,8 @@ before_install:
94
107
- nvm --version
95
108
- node --version
96
109
- npm --version
97
- - gcc --version
98
- - g++ --version
110
+ - ${CC:- gcc} --version
111
+ - ${CXX:- g++} --version
99
112
100
113
install :
101
114
- npm install
Original file line number Diff line number Diff line change 4
4
5
5
NodeJS | Minimum node-sass version | Node Module
6
6
--------|--------------------------|------------
7
+ Node 13 | (not yet release) | 79
7
8
Node 12 | 4.12+ | 72
8
9
Node 11 | 4.10+ | 67
9
10
Node 10 | 4.9+ | 64
Original file line number Diff line number Diff line change 76
76
- nodejs_version : 12
77
77
GYP_MSVS_VERSION : 2017
78
78
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
79
+ - nodejs_version : 13
80
+ GYP_MSVS_VERSION : 2017
81
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
79
82
80
83
install :
81
84
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
173
176
- nodejs_version : 12
174
177
GYP_MSVS_VERSION : 2017
175
178
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
179
+ - nodejs_version : 13
180
+ GYP_MSVS_VERSION : 2017
181
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
176
182
177
183
install :
178
184
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ function getHumanNodeVersion(abi) {
78
78
case 64 : return 'Node.js 10.x' ;
79
79
case 67 : return 'Node.js 11.x' ;
80
80
case 72 : return 'Node.js 12.x' ;
81
+ case 79 : return 'Node.js 13.x' ;
81
82
default : return false ;
82
83
}
83
84
}
You can’t perform that action at this time.
0 commit comments