build: intl: converge from joyent/node
[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 debug_arg=
19 set snapshot_arg=
20 set noprojgen=
21 set nobuild=
22 set nosign=
23 set nosnapshot=
24 set test_args=
25 set msi=
26 set upload=
27 set licensertf=
28 set jslint=
29 set buildnodeweak=
30 set noetw=
31 set noetw_arg=
32 set noetw_msi_arg=
33 set noperfctr=
34 set noperfctr_arg=
35 set noperfctr_msi_arg=
36 set i18n_arg=
37 set download_arg=
38 set release_urls_arg=
39
40 :next-arg
41 set build_release=
42 if "%1"=="" goto args-done
43 if /i "%1"=="debug"         set config=Debug&goto arg-ok
44 if /i "%1"=="release"       set config=Release&goto arg-ok
45 if /i "%1"=="clean"         set target=Clean&goto arg-ok
46 if /i "%1"=="ia32"          set target_arch=x86&goto arg-ok
47 if /i "%1"=="x86"           set target_arch=x86&goto arg-ok
48 if /i "%1"=="x64"           set target_arch=x64&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% -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"=="jslint"        set jslint=1&goto arg-ok
65 @rem Include small-icu support with MSI installer
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
74 echo Warning: ignoring invalid command line option `%1`.
75
76 :arg-ok
77 :arg-ok
78 shift
79 goto next-arg
80 if defined build_release (
81   set nosnapshot=1
82   set config=Release
83   set msi=1
84   set licensertf=1
85   set download_arg="--download=all"
86   set i18n_arg=small-icu
87 )
88
89
90 :args-done
91 if "%config%"=="Debug" set debug_arg=--debug
92 if defined nosnapshot set snapshot_arg=--without-snapshot
93 if defined noetw set noetw_arg=--without-etw& set noetw_msi_arg=/p:NoETW=1
94 if defined noperfctr set noperfctr_arg=--without-perfctr& set noperfctr_msi_arg=/p:NoPerfCtr=1
95 if defined RELEASE_URLBASE set release_urlbase_arg=--release-urlbase=%RELEASE_URLBASE%
96
97 if "%i18n_arg%"=="full-icu" set i18n_arg=--with-intl=full-icu
98 if "%i18n_arg%"=="small-icu" set i18n_arg=--with-intl=small-icu
99 if "%i18n_arg%"=="intl-none" set i18n_arg=--with-intl=none
100
101 call :getnodeversion || exit /b 1
102
103 @rem Set environment for msbuild
104
105 @rem Look for Visual Studio 2015
106 if not defined VS140COMNTOOLS goto vc-set-2013
107 if not exist "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat" goto vc-set-2013
108 if "%VCVARS_VER%" NEQ "140" (
109   call "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat"
110   SET VCVARS_VER=140
111 )
112 if not defined VCINSTALLDIR goto vc-set-2013
113 set GYP_MSVS_VERSION=2015
114 goto msbuild-found
115
116 :vc-set-2013
117 @rem Look for Visual Studio 2013
118 if not defined VS120COMNTOOLS goto msbuild-not-found
119 if not exist "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found
120 if "%VCVARS_VER%" NEQ "120" (
121   call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat"
122   SET VCVARS_VER=120
123 )
124 if not defined VCINSTALLDIR goto msbuild-not-found
125 set GYP_MSVS_VERSION=2013
126 goto msbuild-found
127
128 :msbuild-not-found
129 echo Failed to find Visual Studio installation.
130 goto exit
131
132 :msbuild-found
133
134 :project-gen
135 @rem Skip project generation if requested.
136 if defined noprojgen goto msbuild
137
138 @rem Generate the VS project.
139 python configure %download_arg% %i18n_arg% %debug_arg% %snapshot_arg% %noetw_arg% %noperfctr_arg% --dest-cpu=%target_arch% --tag=%TAG%
140 if errorlevel 1 goto create-msvs-files-failed
141 if not exist node.sln goto create-msvs-files-failed
142 echo Project files generated.
143
144 :msbuild
145 @rem Skip build if requested.
146 if defined nobuild goto sign
147
148 @rem Build the sln with msbuild.
149 msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
150 if errorlevel 1 goto exit
151 if "%target%" == "Clean" goto exit
152
153 :sign
154 @rem Skip signing if the `nosign` option was specified.
155 if defined nosign goto licensertf
156
157 signtool sign /a /d "io.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\iojs.exe
158 if errorlevel 1 echo Failed to sign exe&goto exit
159
160 :licensertf
161 @rem Skip license.rtf generation if not requested.
162 if not defined licensertf goto msi
163
164 %config%\iojs tools\license2rtf.js < LICENSE > %config%\license.rtf
165 if errorlevel 1 echo Failed to generate license.rtf&goto exit
166
167 :msi
168 @rem Skip msi generation if not requested
169 if not defined msi goto run
170
171 :msibuild
172 echo Building iojs-v%FULLVERSION%-%target_arch%.msi
173 msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /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
174 if errorlevel 1 goto exit
175
176 if defined nosign goto upload
177 signtool sign /a /d "io.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll iojs-v%FULLVERSION%-%target_arch%.msi
178 if errorlevel 1 echo Failed to sign msi&goto exit
179
180 :upload
181 @rem Skip upload if not requested
182 if not defined upload goto run
183
184 if not defined SSHCONFIG (
185   echo SSHCONFIG is not set for upload
186   exit /b 1
187 )
188 if not defined STAGINGSERVER set STAGINGSERVER=iojs-www
189 ssh -F %SSHCONFIG% %STAGINGSERVER% "mkdir -p staging/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%"
190 scp -F %SSHCONFIG% Release\iojs.exe %STAGINGSERVER%:staging/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/iojs.exe
191 scp -F %SSHCONFIG% Release\iojs.lib %STAGINGSERVER%:staging/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/iojs.lib
192 scp -F %SSHCONFIG% iojs-v%FULLVERSION%-%target_arch%.msi %STAGINGSERVER%:staging/%DISTTYPEDIR%/v%FULLVERSION%/
193 ssh -F %SSHCONFIG% %STAGINGSERVER% "touch staging/%DISTTYPEDIR%/v%FULLVERSION%/iojs-v%FULLVERSION%-%target_arch%.msi.done staging/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%.done"
194
195 :run
196 @rem Run tests if requested.
197
198 :build-node-weak
199 @rem Build node-weak if required
200 if "%buildnodeweak%"=="" goto run-tests
201 "%config%\iojs" deps\npm\node_modules\node-gyp\bin\node-gyp rebuild --directory="%~dp0test\gc\node_modules\weak" --nodedir="%~dp0."
202 if errorlevel 1 goto build-node-weak-failed
203 goto run-tests
204
205 :build-node-weak-failed
206 echo Failed to build node-weak.
207 goto exit
208
209 :run-tests
210 if "%test_args%"=="" goto jslint
211 if "%config%"=="Debug" set test_args=--mode=debug %test_args%
212 if "%config%"=="Release" set test_args=--mode=release %test_args%
213 echo running 'cctest'
214 "%config%\cctest"
215 echo running 'python tools\test.py %test_args%'
216 python tools\test.py %test_args%
217 goto jslint
218
219 :jslint
220 if not defined jslint goto exit
221 echo running jslint
222 %config%\iojs tools\eslint\bin\eslint.js src lib test --rulesdir tools\eslint-rules --reset --quiet
223 goto exit
224
225 :create-msvs-files-failed
226 echo Failed to create vc project files.
227 goto exit
228
229 :help
230 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] [download-all]
231 echo Examples:
232 echo   vcbuild.bat                : builds release build
233 echo   vcbuild.bat debug          : builds debug build
234 echo   vcbuild.bat release msi    : builds release build and MSI installer package
235 echo   vcbuild.bat test           : builds debug build and runs tests
236 goto exit
237
238 :exit
239 echo   vcbuild.bat build-release  : builds the release distribution as used by nodejs.org
240 goto :EOF
241
242 rem ***************
243 rem   Subroutines
244 rem ***************
245
246 :getnodeversion
247 set NODE_VERSION=
248 set TAG=
249 set FULLVERSION=
250
251 for /F "usebackq tokens=*" %%i in (`python "%~dp0tools\getnodeversion.py"`) do set NODE_VERSION=%%i
252 if not defined NODE_VERSION (
253   echo Cannot determine current version of io.js
254   exit /b 1
255 )
256
257 if not defined DISTTYPE set DISTTYPE=release
258 if "%DISTTYPE%"=="release" (
259   set FULLVERSION=%NODE_VERSION%
260   goto exit
261 )
262 if "%DISTTYPE%"=="custom" (
263   if not defined CUSTOMTAG (
264     echo "CUSTOMTAG is not set for DISTTYPE=custom"
265     exit /b 1
266   )
267   set TAG=%CUSTOMTAG%
268 )
269 if not "%DISTTYPE%"=="custom" (
270   if not defined DATESTRING (
271     echo "DATESTRING is not set for nightly"
272     exit /b 1
273   )
274   if not defined COMMIT (
275     echo "COMMIT is not set for nightly"
276     exit /b 1
277   )
278   if not "%DISTTYPE%"=="nightly" (
279     if not "%DISTTYPE%"=="next-nightly" (
280       echo "DISTTYPE is not release, custom, nightly or next-nightly"
281       exit /b 1
282     )
283   )
284   set TAG=%DISTTYPE%%DATESTRING%%COMMIT%
285 )
286 set FULLVERSION=%NODE_VERSION%-%TAG%
287
288 :exit
289 if not defined DISTTYPEDIR set DISTTYPEDIR=%DISTTYPE%
290 goto :EOF