From 52c9e7182b589085076a5727c0b97b87c3f1c6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B5=D0=BC=D0=BB=D1=8F=D0=BA?= <92867056+AlexanderZemlyak@users.noreply.github.com> Date: Sat, 3 Jan 2026 19:54:32 +0200 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=BF=D0=B8=D0=BB=D1=8F?= =?UTF-8?q?=D1=86=D0=B8=D0=B8=20RebuildStandartModulesSPython.pas=20=D0=B2?= =?UTF-8?q?=20bat=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20(#3368)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add RebuildStandartModules SPython.pas compilation in bat files * Update gitignore in ReleaseGenerators --- ReleaseGenerators/.gitignore | 1 + _GenerateAllSetups.bat | 2 +- _RebuildReleaseAndRunTests.bat | 2 ++ _RebuildReleaseAndRunTests.sh | 1 + _RebuildReleaseAndRunTestsForGitHubActions.bat | 2 ++ 5 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ReleaseGenerators/.gitignore b/ReleaseGenerators/.gitignore index 8bb6c8580..b39d07e55 100644 --- a/ReleaseGenerators/.gitignore +++ b/ReleaseGenerators/.gitignore @@ -2,6 +2,7 @@ /RebuildStandartModules.exe +/RebuildStandartModulesSPython.exe /Samples/BF/* /Samples/PAS/* /Samples/PL0/* diff --git a/_GenerateAllSetups.bat b/_GenerateAllSetups.bat index cd075d68f..c9ad383b7 100644 --- a/_GenerateAllSetups.bat +++ b/_GenerateAllSetups.bat @@ -18,7 +18,7 @@ dotnet build -c Release --no-incremental PascalABCNET.sln cd ReleaseGenerators ..\bin\pabcnetc RebuildStandartModules.pas /rebuild -..\bin\pabcnetc RebuildStandartModulesSPython.pas +..\bin\pabcnetc RebuildStandartModulesSPython.pas /rebuild @IF %ERRORLEVEL% NEQ 0 GOTO ERROR cd PABCRtl diff --git a/_RebuildReleaseAndRunTests.bat b/_RebuildReleaseAndRunTests.bat index 722c5eec8..78e50b2f6 100644 --- a/_RebuildReleaseAndRunTests.bat +++ b/_RebuildReleaseAndRunTests.bat @@ -4,6 +4,7 @@ dotnet build -c Release --no-incremental PascalABCNET.sln cd ReleaseGenerators ..\bin\pabcnetc RebuildStandartModules.pas /rebuild +..\bin\pabcnetc RebuildStandartModulesSPython.pas /rebuild @IF %ERRORLEVEL% NEQ 0 GOTO ERROR @@ -20,6 +21,7 @@ ExecHide.exe gacutil.exe /u PABCRtl ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll ..\bin\pabcnetc RebuildStandartModules.pas /rebuild +..\bin\pabcnetc RebuildStandartModulesSPython.pas /rebuild @IF %ERRORLEVEL% NEQ 0 GOTO ERROR diff --git a/_RebuildReleaseAndRunTests.sh b/_RebuildReleaseAndRunTests.sh index 780f80f11..b7d56f0aa 100644 --- a/_RebuildReleaseAndRunTests.sh +++ b/_RebuildReleaseAndRunTests.sh @@ -18,6 +18,7 @@ mono --aot bin/PascalABCLanguageInfo.dll cd ReleaseGenerators mono ../bin/pabcnetc.exe RebuildStandartModulesMono.pas /rebuild +mono ../bin/pabcnetc RebuildStandartModulesSPython.pas /rebuild if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then cd ../TestSuite diff --git a/_RebuildReleaseAndRunTestsForGitHubActions.bat b/_RebuildReleaseAndRunTestsForGitHubActions.bat index eb6966692..e152a9d62 100644 --- a/_RebuildReleaseAndRunTestsForGitHubActions.bat +++ b/_RebuildReleaseAndRunTestsForGitHubActions.bat @@ -4,6 +4,7 @@ dotnet build -c Release PascalABCNET.sln cd ReleaseGenerators ..\bin\pabcnetc RebuildStandartModules.pas /rebuild /noconsole +..\bin\pabcnetc RebuildStandartModulesSPython.pas /rebuild /noconsole @IF %ERRORLEVEL% NEQ 0 GOTO ERROR @@ -20,6 +21,7 @@ ExecHide.exe gacutil.exe /u PABCRtl ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll ..\bin\pabcnetc RebuildStandartModules.pas /rebuild /noconsole +..\bin\pabcnetc RebuildStandartModulesSPython.pas /rebuild /noconsole @IF %ERRORLEVEL% NEQ 0 GOTO ERROR