test: add test-npm-install to parallel tests suite
[platform/upstream/nodejs.git] / vcbuild.bat
1 @echo off
2
3 cd %~dp0
4
5 if /i "%1"=="help" goto help
6 if /i "%1"=="--help" goto help
7 if /i "%1"=="-help" goto help
8 if /i "%1"=="/help" goto help
9 if /i "%1"=="?" goto help
10 if /i "%1"=="-?" goto help
11 if /i "%1"=="--?" goto help
12 if /i "%1"=="/?" goto help
13
14 @rem Process arguments.
15 set config=Release
16 set target=Build
17 set target_arch=x86
18 set target_env=
19 set noprojgen=
20 set nobuild=
21 set nosign=
22 set nosnapshot=
23 set test_args=
24 set msi=
25 set upload=
26 set licensertf=
27 set jslint=
28 set buildnodeweak=
29 set noetw=
30 set noetw_msi_arg=
31 set noperfctr=
32 set noperfctr_msi_arg=
33 set i18n_arg=
34 set download_arg=
35 set release_urls_arg=
36 set build_release=
37 set configure_flags=
38
39 :next-arg
40 if "%1"=="" goto args-done
41 if /i "%1"=="debug"         set config=Debug&goto arg-ok
42 if /i "%1"=="release"       set config=Release&goto arg-ok
43 if /i "%1"=="clean"         set target=Clean&goto arg-ok
44 if /i "%1"=="ia32"          set target_arch=x86&goto arg-ok
45 if /i "%1"=="x86"           set target_arch=x86&goto arg-ok
46 if /i "%1"=="x64"           set target_arch=x64&goto arg-ok
47 if /i "%1"=="vc2013"        set target_env=vc2013&goto arg-ok
48 if /i "%1"=="vc2015"        set target_env=vc2015&goto arg-ok
49 if /i "%1"=="noprojgen"     set noprojgen=1&goto arg-ok
50 if /i "%1"=="nobuild"       set nobuild=1&goto arg-ok
51 if /i "%1"=="nosign"        set nosign=1&goto arg-ok
52 if /i "%1"=="nosnapshot"    set nosnapshot=1&goto arg-ok
53 if /i "%1"=="noetw"         set noetw=1&goto arg-ok
54 if /i "%1"=="noperfctr"     set noperfctr=1&goto arg-ok
55 if /i "%1"=="licensertf"    set licensertf=1&goto arg-ok
56 if /i "%1"=="test"          set test_args=%test_args% sequential parallel message -J&set jslint=1&goto arg-ok
57 if /i "%1"=="test-ci"       set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap message sequential parallel&goto arg-ok
58 if /i "%1"=="test-simple"   set test_args=%test_args% sequential parallel -J&goto arg-ok
59 if /i "%1"=="test-message"  set test_args=%test_args% message&goto arg-ok
60 if /i "%1"=="test-gc"       set test_args=%test_args% gc&set buildnodeweak=1&goto arg-ok
61 if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok
62 if /i "%1"=="test-pummel"   set test_args=%test_args% pummel&goto arg-ok
63 if /i "%1"=="test-all"      set test_args=%test_args% sequential parallel message gc internet pummel&set buildnodeweak=1&set jslint=1&goto arg-ok
64 if /i "%1"=="test-known-issues" set test_args=%test_args% known_issues --expect-fail&goto arg-ok
65 if /i "%1"=="jslint"        set jslint=1&goto arg-ok
66 if /i "%1"=="msi"           set msi=1&set licensertf=1&set download_arg="--download=all"&set i18n_arg=small-icu&goto arg-ok
67 if /i "%1"=="build-release" set build_release=1&goto arg-ok
68 if /i "%1"=="upload"        set upload=1&goto arg-ok
69 if /i "%1"=="small-icu"     set i18n_arg=%1&goto arg-ok
70 if /i "%1"=="full-icu"      set i18n_arg=%1&goto arg-ok
71 if /i "%1"=="intl-none"     set i18n_arg=%1&goto arg-ok
72 if /i "%1"=="download-all"  set download_arg="--download=all"&goto arg-ok
73 if /i "%1"=="ignore-flaky"  set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok
74
75 echo Warning: ignoring invalid command line option `%1`.
76
77 :arg-ok
78 :arg-ok
79 shift
80 goto next-arg
81
82 :args-done
83
84 if defined build_release (
85   set config=Release
86   set msi=1
87   set licensertf=1
88   set download_arg="--download=all"
89   set i18n_arg=small-icu
90 )
91
92 if "%config%"=="Debug" set configure_flags=%configure_flags% --debug
93 if defined nosnapshot set configure_flags=%configure_flags% --without-snapshot
94 if defined noetw set configure_flags=%configure_flags% --without-etw& set noetw_msi_arg=/p:NoETW=1
95 if defined noperfctr set configure_flags=%configure_flags% --without-perfctr& set noperfctr_msi_arg=/p:NoPerfCtr=1
96 if defined release_urlbase set release_urlbase_arg=--release-urlbase=%release_urlbase%
97 if defined download_arg set configure_flags=%configure_flags% %download_arg%
98
99 if "%i18n_arg%"=="full-icu" set configure_flags=%configure_flags% --with-intl=full-icu
100 if "%i18n_arg%"=="small-icu" set configure_flags=%configure_flags% --with-intl=small-icu
101 if "%i18n_arg%"=="intl-none" set configure_flags=%configure_flags% --with-intl=none
102
103 if defined config_flags set configure_flags=%configure_flags% %config_flags%
104
105 if not exist "%~dp0deps\icu" goto no-depsicu
106 if "%target%"=="Clean" echo deleting %~dp0deps\icu
107 if "%target%"=="Clean" rmdir /S /Q %~dp0deps\icu
108 :no-depsicu
109
110 call :getnodeversion || exit /b 1
111
112 @rem Set environment for msbuild
113
114 if defined target_env if "%target_env%" NEQ "vc2015" goto vc-set-2013
115 @rem Look for Visual Studio 2015
116 echo Looking for Visual Studio 2015
117 if not defined VS140COMNTOOLS goto vc-set-2013
118 if not exist "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat" goto vc-set-2013
119 echo Found Visual Studio 2015
120 if defined msi (
121   echo Looking for WiX installation for Visual Studio 2015...
122   if not exist "%WIX%\SDK\VS2015" (
123     echo Failed to find WiX install for Visual Studio 2015
124     echo VS2015 support for WiX is only present starting at version 3.10
125     goto vc-set-2013
126   )
127 )
128 if "%VCVARS_VER%" NEQ "140" (
129   call "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat"
130   SET VCVARS_VER=140
131 )
132 if not defined VCINSTALLDIR goto vc-set-2013
133 set GYP_MSVS_VERSION=2015
134 set PLATFORM_TOOLSET=v140
135 goto msbuild-found
136
137 :vc-set-2013
138 if defined target_env if "%target_env%" NEQ "vc2013" goto msbuild-not-found
139 @rem Look for Visual Studio 2013
140 echo Looking for Visual Studio 2013
141 if not defined VS120COMNTOOLS goto msbuild-not-found
142 if not exist "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found
143 echo Found Visual Studio 2013
144 if defined msi (
145   echo Looking for WiX installation for Visual Studio 2013...
146   if not exist "%WIX%\SDK\VS2013" (
147     echo Failed to find WiX install for Visual Studio 2013
148     echo VS2013 support for WiX is only present starting at version 3.8
149     goto wix-not-found
150   )
151 )
152 if "%VCVARS_VER%" NEQ "120" (
153   call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat"
154   SET VCVARS_VER=120
155 )
156 if not defined VCINSTALLDIR goto msbuild-not-found
157 set GYP_MSVS_VERSION=2013
158 set PLATFORM_TOOLSET=v120
159 goto msbuild-found
160
161 :msbuild-not-found
162 echo Failed to find Visual Studio installation.
163 goto exit
164
165 :wix-not-found
166 echo Build skipped. To generate installer, you need to install Wix.
167 goto run
168
169 :msbuild-found
170
171 :project-gen
172 @rem Skip project generation if requested.
173 if defined noprojgen goto msbuild
174
175 @rem Generate the VS project.
176 echo configure %configure_flags% --dest-cpu=%target_arch% --tag=%TAG%
177 python configure %configure_flags% --dest-cpu=%target_arch% --tag=%TAG%
178 if errorlevel 1 goto create-msvs-files-failed
179 if not exist node.sln goto create-msvs-files-failed
180 echo Project files generated.
181
182 :msbuild
183 @rem Skip build if requested.
184 if defined nobuild goto sign
185
186 @rem Build the sln with msbuild.
187 set "msbplatform=Win32"
188 if "%target_arch%"=="x64" set "msbplatform=x64"
189 msbuild node.sln /m /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
190 if errorlevel 1 goto exit
191 if "%target%" == "Clean" goto exit
192
193 :sign
194 @rem Skip signing if the `nosign` option was specified.
195 if defined nosign goto licensertf
196
197 signtool sign /a /d "Node.js" /du "https://nodejs.org" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\node.exe
198 if errorlevel 1 echo Failed to sign exe&goto exit
199
200 :licensertf
201 @rem Skip license.rtf generation if not requested.
202 if not defined licensertf goto msi
203
204 %config%\node tools\license2rtf.js < LICENSE > %config%\license.rtf
205 if errorlevel 1 echo Failed to generate license.rtf&goto exit
206
207 :msi
208 @rem Skip msi generation if not requested
209 if not defined msi goto run
210
211 :msibuild
212 echo Building node-v%FULLVERSION%-%target_arch%.msi
213 msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:PlatformToolset=%PLATFORM_TOOLSET% /p:GypMsvsVersion=%GYP_MSVS_VERSION% /p:Configuration=%config% /p:Platform=%target_arch% /p:NodeVersion=%NODE_VERSION% /p:FullVersion=%FULLVERSION% /p:DistTypeDir=%DISTTYPEDIR% %noetw_msi_arg% %noperfctr_msi_arg% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
214 if errorlevel 1 goto exit
215
216 if defined nosign goto upload
217 signtool sign /a /d "Node.js" /du "https://nodejs.org" /t http://timestamp.globalsign.com/scripts/timestamp.dll node-v%FULLVERSION%-%target_arch%.msi
218 if errorlevel 1 echo Failed to sign msi&goto exit
219
220 :upload
221 @rem Skip upload if not requested
222 if not defined upload goto run
223
224 if not defined SSHCONFIG (
225   echo SSHCONFIG is not set for upload
226   exit /b 1
227 )
228 if not defined STAGINGSERVER set STAGINGSERVER=node-www
229 ssh -F %SSHCONFIG% %STAGINGSERVER% "mkdir -p nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%"
230 scp -F %SSHCONFIG% Release\node.exe %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.exe
231 scp -F %SSHCONFIG% Release\node.lib %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.lib
232 scp -F %SSHCONFIG% node-v%FULLVERSION%-%target_arch%.msi %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/
233 ssh -F %SSHCONFIG% %STAGINGSERVER% "touch nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%.done && chmod -R ug=rw-x+X,o=r+X nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi* nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%*"
234
235 :run
236 @rem Run tests if requested.
237
238 :build-node-weak
239 @rem Build node-weak if required
240 if "%buildnodeweak%"=="" goto run-tests
241 "%config%\node" deps\npm\node_modules\node-gyp\bin\node-gyp rebuild --directory="%~dp0test\gc\node_modules\weak" --nodedir="%~dp0."
242 if errorlevel 1 goto build-node-weak-failed
243 goto run-tests
244
245 :build-node-weak-failed
246 echo Failed to build node-weak.
247 goto exit
248
249 :run-tests
250 if "%test_args%"=="" goto jslint
251 if "%config%"=="Debug" set test_args=--mode=debug %test_args%
252 if "%config%"=="Release" set test_args=--mode=release %test_args%
253 echo running 'cctest'
254 "%config%\cctest"
255 echo running 'python tools\test.py %test_args%'
256 python tools\test.py %test_args%
257 goto jslint
258
259 :jslint
260 if not defined jslint goto exit
261 echo running jslint
262 %config%\node tools\eslint\bin\eslint.js benchmark lib src test tools\doc tools\eslint-rules --rulesdir tools\eslint-rules
263 goto exit
264
265 :create-msvs-files-failed
266 echo Failed to create vc project files.
267 goto exit
268
269 :help
270
271 echo vcbuild.bat [debug/release] [msi] [test-all/test-uv/test-internet/test-pummel/test-simple/test-message] [clean] [noprojgen] [small-icu/full-icu/intl-none] [nobuild] [nosign] [x86/x64] [vc2013/vc2015] [download-all]
272
273 echo Examples:
274 echo   vcbuild.bat                : builds release build
275 echo   vcbuild.bat debug          : builds debug build
276 echo   vcbuild.bat release msi    : builds release build and MSI installer package
277 echo   vcbuild.bat test           : builds debug build and runs tests
278 echo   vcbuild.bat build-release  : builds the release distribution as used by nodejs.org
279 goto exit
280
281 :exit
282 goto :EOF
283
284 rem ***************
285 rem   Subroutines
286 rem ***************
287
288 :getnodeversion
289 set NODE_VERSION=
290 set TAG=
291 set FULLVERSION=
292
293 for /F "usebackq tokens=*" %%i in (`python "%~dp0tools\getnodeversion.py"`) do set NODE_VERSION=%%i
294 if not defined NODE_VERSION (
295   echo Cannot determine current version of Node.js
296   exit /b 1
297 )
298
299 if not defined DISTTYPE set DISTTYPE=release
300 if "%DISTTYPE%"=="release" (
301   set FULLVERSION=%NODE_VERSION%
302   goto exit
303 )
304 if "%DISTTYPE%"=="custom" (
305   if not defined CUSTOMTAG (
306     echo "CUSTOMTAG is not set for DISTTYPE=custom"
307     exit /b 1
308   )
309   set TAG=%CUSTOMTAG%
310 )
311 if not "%DISTTYPE%"=="custom" (
312   if not defined DATESTRING (
313     echo "DATESTRING is not set for nightly"
314     exit /b 1
315   )
316   if not defined COMMIT (
317     echo "COMMIT is not set for nightly"
318     exit /b 1
319   )
320   if not "%DISTTYPE%"=="nightly" (
321     if not "%DISTTYPE%"=="next-nightly" (
322       echo "DISTTYPE is not release, custom, nightly or next-nightly"
323       exit /b 1
324     )
325   )
326   set TAG=%DISTTYPE%%DATESTRING%%COMMIT%
327 )
328 set FULLVERSION=%NODE_VERSION%-%TAG%
329
330 :exit
331 if not defined DISTTYPEDIR set DISTTYPEDIR=%DISTTYPE%
332 goto :EOF