File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ environment:
27
27
- nodejs_version : " 19"
28
28
- nodejs_version : " 20"
29
29
- nodejs_version : " 21"
30
+ - APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2022
31
+ nodejs_version : " 22"
32
+ - APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2022
33
+ nodejs_version : " 23"
30
34
31
35
# Install scripts. (runs after repo cloning)
32
36
install :
@@ -37,7 +41,8 @@ install:
37
41
- set PATH=%APPDATA%\npm;%PATH%
38
42
# Typical npm stuff.
39
43
- npm install
40
- - IF %nodejs_version% LSS 8 (npm run rebuild-tests) ELSE (npm run rebuild-tests-2017)
44
+ - IF %nodejs_version% GEQ 22 set NODE_GYP_FORCE_PYTHON=C:\Python38-x64\python.exe
45
+ - IF %nodejs_version% LSS 8 (npm run rebuild-tests-2015) ELSE (npm run rebuild-tests)
41
46
42
47
# Post-install test scripts.
43
48
test_script :
Original file line number Diff line number Diff line change 10
10
"scripts" : {
11
11
"test" : " tap --gc --stderr test/js/*-test.js" ,
12
12
"test:worker" : " node --experimental-worker test/tap-as-worker.js --gc --stderr test/js/*-test.js" ,
13
- "rebuild-tests" : " node-gyp rebuild --msvs_version=2015 --directory test" ,
14
- "rebuild-tests-2017 " : " node-gyp rebuild --msvs_version=2017 --directory test" ,
13
+ "rebuild-tests-2015 " : " node-gyp rebuild --msvs_version=2015 --directory test" ,
14
+ "rebuild-tests" : " node-gyp rebuild --directory test" ,
15
15
"docs" : " doc/.build.sh"
16
16
},
17
17
"contributors" : [
You can’t perform that action at this time.
0 commit comments