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