2021-08-07 16:51:29 +03:00
|
|
|
#!/bin/sh -e
|
2025-03-03 20:34:51 +03:00
|
|
|
dotnet build -c Release --no-incremental pabcnetc.sln
|
|
|
|
|
dotnet build -c Release --no-incremental PascalABCNETLinux.sln
|
2015-12-30 13:00:30 +03:00
|
|
|
mono --aot bin/pabcnetc.exe
|
|
|
|
|
mono --aot bin/NETGenerator.dll
|
|
|
|
|
mono --aot bin/TreeConverter.dll
|
|
|
|
|
mono --aot bin/Compiler.dll
|
|
|
|
|
mono --aot bin/SyntaxTree.dll
|
|
|
|
|
mono --aot bin/SemanticTree.dll
|
|
|
|
|
mono --aot bin/PascalABCParser.dll
|
|
|
|
|
mono --aot bin/ParserTools.dll
|
|
|
|
|
mono --aot bin/CompilerTools.dll
|
|
|
|
|
mono --aot bin/OptimizerConversion.dll
|
|
|
|
|
mono --aot bin/Errors.dll
|
2024-09-22 10:23:18 +03:00
|
|
|
mono --aot bin/LanguageIntegrator.dll
|
|
|
|
|
mono --aot bin/StringConstants.dll
|
|
|
|
|
mono --aot bin/PascalABCLanguageInfo.dll
|
2025-03-03 20:34:51 +03:00
|
|
|
|
2015-12-29 17:56:29 +03:00
|
|
|
cd ReleaseGenerators
|
2021-04-15 12:28:19 +03:00
|
|
|
mono ../bin/pabcnetc.exe RebuildStandartModulesMono.pas /rebuild
|
2026-01-06 19:52:19 +03:00
|
|
|
# /rebuild здесь пока нельзя
|
|
|
|
|
mono ../bin/pabcnetc RebuildStandartModulesSPython.pas
|
2015-12-29 17:56:29 +03:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
|
if [ $? -eq 0 ]; then
|
2025-12-21 21:11:52 +03:00
|
|
|
cd ../TestSuite
|
|
|
|
|
mono ../bin/TestRunner.exe
|
|
|
|
|
cd ../TestSuiteAdditionalLanguages/SPythonTests
|
|
|
|
|
mono ../../bin/TestRunner.exe
|
|
|
|
|
cd ../..
|
2015-12-29 17:56:29 +03:00
|
|
|
fi
|
2015-12-29 20:36:47 +03:00
|
|
|
fi
|