File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,12 @@ environment:
50
50
51
51
install :
52
52
- cmd : choco install OpenCV -y -version %OPENCV_VERSION%
53
- - if not "%BUILD_TASK%" == "ENVS" \
54
- SET OPENCV_INCLUDE_DIR=c:\tools\opencv\build\include && \
55
- SET OPENCV_LIB_DIR=c:\tools\opencv\build\x64\vc14\lib && \
56
- SET OPENCV_BIN_DIR=c:\tools\opencv\build\x64\vc14\bin && \
57
- SET PATH=%PATH%;%OPENCV_BIN_DIR%;
53
+ - if not "%BUILD_TASK%" == "ENVS" (
54
+ SET OPENCV_INCLUDE_DIR=c:\tools\opencv\build\include
55
+ SET OPENCV_LIB_DIR=c:\tools\opencv\build\x64\vc14\lib
56
+ SET OPENCV_BIN_DIR=c:\tools\opencv\build\x64\vc14\bin
57
+ SET PATH=%PATH%;%OPENCV_BIN_DIR%;
58
+ )
58
59
- ps : Install-Product node $env:nodejs_version x64
59
60
- node --version
60
61
- npm install -g node-gyp
@@ -65,13 +66,13 @@ build: off
65
66
66
67
test_script :
67
68
- node --version
68
- - if "%BUILD_TASK%" == "ENVS" ( \
69
- cd .\ci\envs \
70
- npm install \
71
- npm test \
69
+ - if "%BUILD_TASK%" == "ENVS" (
70
+ cd .\ci\envs
71
+ npm install
72
+ npm test
72
73
) else ( \
73
- cd c:\projects\opencv4nodejs\test \
74
- npm install \
75
- npm run test-appveyor \
76
- npm run test-externalMemTracking \
74
+ cd c:\projects\opencv4nodejs\test
75
+ npm install
76
+ npm run test-appveyor
77
+ npm run test-externalMemTracking
77
78
)
You can’t perform that action at this time.
0 commit comments