WINDOWS-BUILD: Fix buildall to work on platforms which have multiple versions of Visual Studio installed
- Added checks for dependencies before execution - Added setup and update support for local Win32-Development-Binaries repo init - Added support for operation under both a CMD.EXE invoked from either a git bash process or a natural windows CMD.EXE - Fixed proper operation for first build operation after the local build repo has been cloned - Make sure the build is of the latest code in the master branch from the origin repository
This commit is contained in:
parent
a01917e88c
commit
3b15398cf0
1 changed files with 69 additions and 15 deletions
|
@ -8,21 +8,72 @@ rem
|
|||
rem We're using a github repository for this purpose since github no longer
|
||||
rem supports a Download files facility since some folks were using it to
|
||||
rem contain large binary files. The typical set of simh windows binaries
|
||||
rem is under 7MB in size and the plan is to delete and recreate the whole
|
||||
rem is under 10MB in size and the plan is to delete and recreate the whole
|
||||
rem Win32-Development-Binaries repository at least every few months.
|
||||
rem
|
||||
rem If this script is invoked with a single parameter "reset", the local
|
||||
rem repository will be wiped out and reset. This should be done AFTER
|
||||
rem the github one is deleted and recreated.
|
||||
rem
|
||||
rem This procedure depends on:
|
||||
rem - Visual Studio 2008 (Express) tools to compile the desired
|
||||
rem simulators. The compiler and its related pieces
|
||||
rem must be installed in the windows %ProgramFiles% directory.
|
||||
rem - git.exe (installed as part of GitExtensions)
|
||||
rem - git credentials available which have write access to the
|
||||
rem github simh/Win32-Development-Binaries repository.
|
||||
rem - 7-Zip (7z.exe) to package the compiled simulators into
|
||||
rem a zip file.
|
||||
rem
|
||||
rem
|
||||
|
||||
set BIN_REPO=Win32-Development-Binaries
|
||||
if exist "%ProgramFiles%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" call "%ProgramFiles%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
|
||||
if exist "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
|
||||
set REMOTE_REPO=git@github.com:simh/%BIN_REPO%.git
|
||||
call :WhereInPath git.exe > NUL 2>&1
|
||||
if %ERRORLEVEL% equ 0 goto GitOK
|
||||
if exist "%ProgramFiles%\Git\bin\git.exe" set PATH=%USERPROFILE%\bin;%ProgramFiles%\Git\local\bin;%ProgramFiles%\Git\mingw\bin;%ProgramFiles%\Git\bin\;%PATH%&goto GitOK
|
||||
if exist "%ProgramFiles(x86)%\Git\bin\git.exe" set PATH=%USERPROFILE%\bin;%ProgramFiles(x86)%\Git\local\bin;%ProgramFiles(x86)%\Git\mingw\bin;%ProgramFiles(x86)%\Git\bin\;%PATH%&goto GitOK
|
||||
echo **** ERROR **** git is unavailable
|
||||
exit /B 1
|
||||
:GitOK
|
||||
|
||||
call :WhereInPath 7z.exe > NUL 2>&1
|
||||
if %ERRORLEVEL% equ 0 goto ZipOK
|
||||
if exist "%ProgramFiles%\7-Zip\7z.exe" set PATH=%PATH%;%ProgramFiles%\7-Zip\&goto ZipOK
|
||||
if exist "%ProgramFiles(x86)%\7-Zip\7z.exe" set PATH=%PATH%;%ProgramFiles(x86)%\7-Zip\&goto ZipOK
|
||||
if exist "%PROGRAMW6432%\7-Zip\7z.exe" set PATH=%PATH%;%PROGRAMW6432%\7-Zip\&goto ZipOK
|
||||
echo **** ERROR **** 7-Zip is unavailable
|
||||
exit /B 1
|
||||
:ZipOK
|
||||
|
||||
rem Now locate the Visual Studio (VC++) 2008 components and setup the environment variables to use them
|
||||
if not exist "%VS90COMNTOOLS%\..\..\VC\bin\vcvars32.bat" echo **** ERROR **** Visual Studio 2008 is unavailable
|
||||
if not exist "%VS90COMNTOOLS%\..\..\VC\bin\vcvars32.bat" exit /B 1
|
||||
call "%VS90COMNTOOLS%\..\..\VC\bin\vcvars32.bat"
|
||||
rem If later versions of Visual Studio are also installed, there can be some confusion about
|
||||
rem where the Windows SDK is located.
|
||||
call :WhereInInclude winsock2.h > NUL 2>&1
|
||||
if %ERRORLEVEL% equ 0 goto VSOK
|
||||
rem need to fixup the Windows SDK reference to use the SDK which was packaged with Visual VC++ 2008
|
||||
if exist "%PROGRAMW6432%\Microsoft SDKs\Windows\v6.0A\include\winsock2.h" set INCLUDE=%INCLUDE%%PROGRAMW6432%\Microsoft SDKs\Windows\v6.0A\include;
|
||||
if exist "%PROGRAMW6432%\Microsoft SDKs\Windows\v6.0A\lib\wsock32.lib" set LIB=%LIB%%PROGRAMW6432%\Microsoft SDKs\Windows\v6.0A\LIB;
|
||||
if exist "%PROGRAMW6432%\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" set PATH=%PATH%;%PROGRAMW6432%\Microsoft SDKs\Windows\v6.0A\bin;
|
||||
call :WhereInInclude winsock2.h > NUL 2>&1
|
||||
if %ERRORLEVEL% equ 0 goto VSOK
|
||||
echo **** ERROR **** Can't locate the Windows SDK include and library files
|
||||
exit /B 1
|
||||
:VSOK
|
||||
|
||||
rem This procedure must be located in the "Visual Studio Projects" directory.
|
||||
rem The git repository directory (.git) is located relative to that directory.
|
||||
cd %~p0
|
||||
SET GIT_COMMIT_ID=
|
||||
if not exist ..\.git-commit-id goto _NoId
|
||||
if not exist ..\.git\hooks\post-commit copy git-hooks\post* ..\.git\hooks\ > NUL 2>&1
|
||||
pushd ..
|
||||
git checkout -q master
|
||||
git fetch -q origin master
|
||||
git log -1 --pretty="%H" >.git-commit-id
|
||||
popd
|
||||
for /F %%i in (..\.git-commit-id) do set GIT_COMMIT_ID=%%i
|
||||
for /F "tokens=3 delims=/" %%i in ("%DATE%") do set D_YYYY=%%i
|
||||
for /F "tokens=2 delims=/ " %%i in ("%DATE%") do set D_MM=%%i
|
||||
|
@ -35,29 +86,32 @@ if "%_SIM_PATCH%" equ "-0" set _SIM_PATCH=
|
|||
set _ZipName=simh-%_SIM_MAJOR%.%_SIM_MINOR%%_SIM_PATCH%%_SIM_VERSION_MODE%--%D_YYYY%-%D_MM%-%D_DD%-%GIT_COMMIT_ID:~0,8%.zip
|
||||
set _ZipPath=..\..\%BIN_REPO%\
|
||||
vcbuild /M2 /useenv /rebuild Simh.sln "Release|Win32"
|
||||
if exist "%ProgramFiles%\7-Zip\7z.exe" "%ProgramFiles%\7-Zip\7z.exe" a -tzip "%_ZipPath%%_ZipName%" "..\BIN\NT\Win32-Release\*.exe"
|
||||
if exist "%ProgramFiles(x86)%\7-Zip\7z.exe" "%ProgramFiles(x86)%\7-Zip\7z.exe" a -tzip "%_ZipPath%%_ZipName%" "..\BIN\NT\Win32-Release\*.exe"
|
||||
if exist "%PROGRAMW6432%\7-Zip\7z.exe" "%PROGRAMW6432%\7-Zip\7z.exe" a -tzip "%_ZipPath%%_ZipName%" "..\BIN\NT\Win32-Release\*.exe"
|
||||
|
||||
7z a -tzip "%_ZipPath%%_ZipName%" "..\BIN\NT\Win32-Release\*.exe"
|
||||
pushd %_ZipPath%
|
||||
where git.exe >NUL
|
||||
if %ERRORLEVEL% equ 0 goto GitOK
|
||||
if exist "%ProgramFiles%\Git\bin\git.exe" path %USERPROFILE%\bin;%ProgramFiles%\Git\local\bin;%ProgramFiles%\Git\mingw\bin;%ProgramFiles%\Git\bin\;%Path%
|
||||
if exist "%ProgramFiles(x86)%\Git\bin\git.exe" path %USERPROFILE%\bin;%ProgramFiles(x86)%\Git\local\bin;%ProgramFiles(x86)%\Git\mingw\bin;%ProgramFiles(x86)%\Git\bin\;%Path%
|
||||
:GitOK
|
||||
if "%1" neq "reset" goto GitAddNew
|
||||
:GitSetup
|
||||
if exist .git rmdir/s .git
|
||||
git init
|
||||
git add README.md
|
||||
git commit -m "Initializing the Windows Binary repository"
|
||||
git remote add origin git@github.com:simh/%BIN_REPO%.git
|
||||
git remote add origin "%REMOTE_REPO%"
|
||||
git branch -m master %BIN_REPO%
|
||||
git push -u origin %BIN_REPO%
|
||||
|
||||
:GitAddNew
|
||||
if not exist .git git clone "%REMOTE_REPO%" ./
|
||||
git pull
|
||||
git add %_ZipName%
|
||||
git commit -m "Build results on %D_YYYY%-%D_MM%-%D_DD% for Commit Id %GIT_COMMIT_ID%"
|
||||
git push -u origin %BIN_REPO%
|
||||
|
||||
popd
|
||||
popd
|
||||
goto :EOF
|
||||
|
||||
:WhereInPath
|
||||
if "%~$PATH:1" NEQ "" exit /B 0
|
||||
exit /B 1
|
||||
|
||||
:WhereInInclude
|
||||
if "%~$INCLUDE:1" NEQ "" exit /B 0
|
||||
exit /B 1
|
Loading…
Add table
Reference in a new issue