Skip to content

Commit 3d20b61

Browse files
fixes appveyor.yml
1 parent bd46d39 commit 3d20b61

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

appveyor.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ environment:
5151
install:
5252
- cmd: choco install OpenCV -y -version %OPENCV_VERSION%
5353
- 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
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 &&
5757
SET PATH=%PATH%;%OPENCV_BIN_DIR%;
5858
)
5959
- ps: Install-Product node $env:nodejs_version x64
@@ -67,12 +67,12 @@ build: off
6767
test_script:
6868
- node --version
6969
- if "%BUILD_TASK%" == "ENVS" (
70-
cd .\ci\envs
71-
npm install
70+
cd .\ci\envs &&
71+
npm install &&
7272
npm test
7373
) else (
74-
cd c:\projects\opencv4nodejs\test
75-
npm install
76-
npm run test-appveyor
74+
cd c:\projects\opencv4nodejs\test &&
75+
npm install &&
76+
npm run test-appveyor &&
7777
npm run test-externalMemTracking
7878
)

0 commit comments

Comments
 (0)