mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
e2126e05e7
The current WiX project files do some manual processing and generation which WiX supports doing out of the box. This patch will use the HeatDirectory task to generate the npm.wxs file and use the auto GUID generation. I also changed the msi filename generation to include the version number to match the currently used name for released msi files. Closes #3360
179 lines
6.0 KiB
Batchfile
179 lines
6.0 KiB
Batchfile
@echo off
|
|
|
|
cd %~dp0
|
|
|
|
if /i "%1"=="help" goto help
|
|
if /i "%1"=="--help" goto help
|
|
if /i "%1"=="-help" goto help
|
|
if /i "%1"=="/help" goto help
|
|
if /i "%1"=="?" goto help
|
|
if /i "%1"=="-?" goto help
|
|
if /i "%1"=="--?" goto help
|
|
if /i "%1"=="/?" goto help
|
|
|
|
@rem Process arguments.
|
|
set config=Release
|
|
set msiplatform=x86
|
|
set target=Build
|
|
set target_arch=ia32
|
|
set debug_arg=
|
|
set nosnapshot_arg=
|
|
set noprojgen=
|
|
set nobuild=
|
|
set nosign=
|
|
set nosnapshot=
|
|
set test=
|
|
set test_args=
|
|
set msi=
|
|
set licensertf=
|
|
set upload=
|
|
set jslint=
|
|
|
|
:next-arg
|
|
if "%1"=="" goto args-done
|
|
if /i "%1"=="debug" set config=Debug&goto arg-ok
|
|
if /i "%1"=="release" set config=Release&goto arg-ok
|
|
if /i "%1"=="clean" set target=Clean&goto arg-ok
|
|
if /i "%1"=="ia32" set target_arch=ia32&goto arg-ok
|
|
if /i "%1"=="x86" set target_arch=ia32&goto arg-ok
|
|
if /i "%1"=="x64" set target_arch=x64&goto arg-ok
|
|
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
|
|
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
|
|
if /i "%1"=="nosign" set nosign=1&goto arg-ok
|
|
if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
|
|
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok
|
|
if /i "%1"=="test-uv" set test=test-uv&goto arg-ok
|
|
if /i "%1"=="test-internet" set test=test-internet&goto arg-ok
|
|
if /i "%1"=="test-pummel" set test=test-pummel&goto arg-ok
|
|
if /i "%1"=="test-simple" set test=test-simple&goto arg-ok
|
|
if /i "%1"=="test-message" set test=test-message&goto arg-ok
|
|
if /i "%1"=="test-all" set test=test-all&goto arg-ok
|
|
if /i "%1"=="test" set test=test&goto arg-ok
|
|
if /i "%1"=="msi" set msi=1&set licensertf=1&goto arg-ok
|
|
if /i "%1"=="upload" set upload=1&goto arg-ok
|
|
if /i "%1"=="jslint" set jslint=1&goto arg-ok
|
|
|
|
echo Warning: ignoring invalid command line option `%1`.
|
|
|
|
:arg-ok
|
|
shift
|
|
goto next-arg
|
|
:args-done
|
|
if defined upload goto upload
|
|
if defined jslint goto jslint
|
|
|
|
if "%config%"=="Debug" set debug_arg=--debug
|
|
if "%target_arch%"=="x64" set msiplatform=x64
|
|
if defined nosnapshot set nosnapshot_arg=--without-snapshot
|
|
|
|
:project-gen
|
|
@rem Skip project generation if requested.
|
|
if defined noprojgen goto msbuild
|
|
|
|
@rem Generate the VS project.
|
|
python configure %debug_arg% %nosnapshot_arg% --dest-cpu=%target_arch%
|
|
if errorlevel 1 goto create-msvs-files-failed
|
|
if not exist node.sln goto create-msvs-files-failed
|
|
echo Project files generated.
|
|
|
|
:msbuild
|
|
@rem Skip project generation if requested.
|
|
if defined nobuild goto sign
|
|
|
|
@rem Bail out early if not running in VS build env.
|
|
if defined VCINSTALLDIR goto msbuild-found
|
|
if not defined VS100COMNTOOLS goto msbuild-not-found
|
|
if not exist "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found
|
|
call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
|
|
if not defined VCINSTALLDIR goto msbuild-not-found
|
|
goto msbuild-found
|
|
|
|
:msbuild-not-found
|
|
echo Build skipped. To build, this file needs to run from VS cmd prompt.
|
|
goto run
|
|
|
|
:msbuild-found
|
|
@rem Build the sln with msbuild.
|
|
msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
|
|
if errorlevel 1 goto exit
|
|
|
|
:sign
|
|
@rem Skip signing if the `nosign` option was specified.
|
|
if defined nosign goto licensertf
|
|
|
|
signtool sign /a Release\node.exe
|
|
|
|
:licensertf
|
|
@rem Skip license.rtf generation if not requested.
|
|
if not defined licensertf goto msi
|
|
|
|
%config%\node tools\license2rtf.js < LICENSE > %config%\license.rtf
|
|
if errorlevel 1 echo Failed to generate license.rtf&goto exit
|
|
|
|
:msi
|
|
@rem Skip msi generation if not requested
|
|
if not defined msi goto run
|
|
python "%~dp0tools\getnodeversion.py" > "%temp%\node_version.txt"
|
|
if not errorlevel 0 echo Cannot determine current version of node.js & goto exit
|
|
for /F "tokens=*" %%i in (%temp%\node_version.txt) do set NODE_VERSION=%%i
|
|
msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:Configuration=%config% /p:Platform=%msiplatform% /p:NodeVersion=%NODE_VERSION% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
|
|
if errorlevel 1 goto exit
|
|
|
|
if defined nosign goto run
|
|
signtool sign /a Release\node-v%NODE_VERSION%-%msiplatform%.msi
|
|
|
|
:run
|
|
@rem Run tests if requested.
|
|
if "%test%"=="" goto exit
|
|
|
|
if "%config%"=="Debug" set test_args=--mode=debug
|
|
if "%config%"=="Release" set test_args=--mode=release
|
|
|
|
if "%test%"=="test" set test_args=%test_args% simple message
|
|
if "%test%"=="test-internet" set test_args=%test_args% internet
|
|
if "%test%"=="test-pummel" set test_args=%test_args% pummel
|
|
if "%test%"=="test-simple" set test_args=%test_args% simple
|
|
if "%test%"=="test-message" set test_args=%test_args% message
|
|
if "%test%"=="test-all" set test_args=%test_args%
|
|
|
|
echo running 'python tools/test.py %test_args%'
|
|
python tools/test.py %test_args%
|
|
|
|
if "%test%"=="test" goto jslint
|
|
|
|
goto exit
|
|
|
|
:create-msvs-files-failed
|
|
echo Failed to create vc project files.
|
|
goto exit
|
|
|
|
:upload
|
|
echo uploading .exe .msi .pdb to nodejs.org
|
|
python "%~dp0tools\getnodeversion.py" > "%temp%\node_version.txt"
|
|
if not errorlevel 0 echo Cannot determine current version of node.js & goto exit
|
|
for /F "tokens=*" %%i in (%temp%\node_version.txt) do set NODE_VERSION=%%i
|
|
@echo on
|
|
ssh node@nodejs.org mkdir -p web/nodejs.org/dist/v%NODE_VERSION%
|
|
scp Release\node.msi node@nodejs.org:~/web/nodejs.org/dist/v%NODE_VERSION%/node-v%NODE_VERSION%.msi
|
|
scp Release\node.exe node@nodejs.org:~/web/nodejs.org/dist/v%NODE_VERSION%/node.exe
|
|
scp Release\node.pdb node@nodejs.org:~/web/nodejs.org/dist/v%NODE_VERSION%/node.pdb
|
|
@echo off
|
|
goto exit
|
|
|
|
:jslint
|
|
echo running jslint
|
|
set PYTHONPATH=tools/closure_linter/
|
|
python tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ --exclude_files lib/punycode.js
|
|
goto exit
|
|
|
|
:help
|
|
echo vcbuild.bat [debug/release] [msi] [test-all/test-uv/test-internet/test-pummel/test-simple/test-message] [clean] [noprojgen] [nobuild] [nosign] [x86/x64]
|
|
echo Examples:
|
|
echo vcbuild.bat : builds release build
|
|
echo vcbuild.bat debug : builds debug build
|
|
echo vcbuild.bat release msi : builds release build and MSI installer package
|
|
echo vcbuild.bat test : builds debug build and runs tests
|
|
goto exit
|
|
|
|
:exit
|