mirror of https://github.com/grpc/grpc-node.git
Fixing various issues with the windows junit report.
This commit is contained in:
parent
83178b9a34
commit
e2b3f31a67
|
|
@ -35,18 +35,19 @@ SET FAILED=0
|
||||||
for %%v in (4.8.4 6.11.3 7.9.0 8.5.0) do (
|
for %%v in (4.8.4 6.11.3 7.9.0 8.5.0) do (
|
||||||
nvm install %%v
|
nvm install %%v
|
||||||
nvm use %%v
|
nvm use %%v
|
||||||
npm install -g npm
|
call npm install -g npm
|
||||||
node -e "console.log(process.versions)"
|
node -e "console.log(process.versions)"
|
||||||
|
|
||||||
SET JUNIT_REPORT_PATH=reports/node%%v/
|
mkdir reports\node%%v
|
||||||
|
SET JUNIT_REPORT_PATH=reports/node%%v
|
||||||
|
|
||||||
call .\node_modules\.bin\gulp clean.all || SET FAILED=1
|
call .\node_modules\.bin\gulp clean.all || SET FAILED=1
|
||||||
call .\node_modules\.bin\gulp setup.windows || SET FAILED=1
|
call .\node_modules\.bin\gulp setup.windows || SET FAILED=1
|
||||||
call .\node_modules\.bin\gulp native.test || SET FAILED=1
|
call .\node_modules\.bin\gulp native.test || SET FAILED=1
|
||||||
)
|
)
|
||||||
|
|
||||||
if %FAILED% neq 0 exit /b 1
|
|
||||||
node merge_kokoro_logs.js
|
node merge_kokoro_logs.js
|
||||||
|
if %FAILED% neq 0 exit /b 1
|
||||||
goto :EOF
|
goto :EOF
|
||||||
|
|
||||||
:error
|
:error
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue