forked from pascalabcnet/pascalabcnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing _GenerateAllSetupsForGitHubActions.bat
- Loading branch information
1 parent
cddbf29
commit 82ea860
Showing
4 changed files
with
77 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
cd ReleaseGenerators\Samples\ | ||
del Pas /s /q | ||
del BF /s /q | ||
del PL0 /s /q | ||
GetSamples.exe "..\..\InstallerSamples" Pas\ | ||
GetSamples.exe _svn\BF BF | ||
GetSamples.exe _svn\PL0\ PL0\ | ||
cd ..\.. | ||
|
||
cd utils\DefaultLanguageResMaker\ | ||
LanguageResMaker.exe | ||
cd ..\.. | ||
|
||
Utils\IncrementVresion\IncrementVresion.exe Configuration\Version.defs REVISION 1 | ||
Utils\ReplaceInFiles\ReplaceInFiles.exe Configuration\Version.defs Configuration\GlobalAssemblyInfo.cs.tmpl Configuration\GlobalAssemblyInfo.cs | ||
Utils\ReplaceInFiles\ReplaceInFiles.exe Configuration\Version.defs ReleaseGenerators\PascalABCNET_version.nsh.tmpl ReleaseGenerators\PascalABCNET_version.nsh | ||
Utils\ReplaceInFiles\ReplaceInFiles.exe Configuration\Version.defs Configuration\pabcversion.txt.tmpl Release\pabcversion.txt | ||
|
||
call Studio.bat /t:rebuild "/property:Configuration=Release" PascalABCNET.sln | ||
|
||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
cd ReleaseGenerators | ||
..\bin\pabcnetc RebuildStandartModules.pas /rebuild /noconsole | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
cd PABCRtl | ||
..\..\bin\pabcnetc PABCRtl.pas /rebuild /noconsole | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
..\sn.exe -Vr PABCRtl.dll | ||
..\sn.exe -R PABCRtl.dll KeyPair.snk | ||
..\sn.exe -Vu PABCRtl.dll | ||
copy PABCRtl.dll ..\..\bin\Lib | ||
|
||
cd .. | ||
ExecHide.exe gacutil.exe /u PABCRtl | ||
ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll | ||
|
||
..\bin\pabcnetc RebuildStandartModules.pas /rebuild /noconsole | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
cd ..\bin | ||
REM MPGORunner.exe | ||
TestRunner.exe 1 1 | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
TestRunner.exe 2 1 | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
TestRunner.exe 3 1 | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
TestRunner.exe 4 1 | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
TestRunner.exe 5 1 | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
TestRunner.exe 6 1 | ||
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR | ||
|
||
cd ..\ReleaseGenerators | ||
call PascalABCNET_ALL.bat | ||
|
||
cd .. | ||
call Studio.bat /t:rebuild "/property:Configuration=Release" PascalABCNET_40.sln | ||
cd ReleaseGenerators | ||
call PascalABCNETWithDotNet40.bat | ||
|
||
cd .. | ||
call Studio.bat /t:rebuild "/property:Configuration=Release" PascalABCNET.sln | ||
|
||
GOTO EXIT | ||
|
||
:ERROR | ||
PAUSE | ||
|
||
:EXIT |