pascalabcnet/_RebuildReleaseAndRunTests.sh

29 lines
787 B
Bash
Raw Normal View History

#!/bin/sh -e
2023-03-19 16:23:48 +03:00
cd Utils/DefaultLanguageResMaker
mono LanguageResMaker.exe
cd ../..
MONO_IOMAP=case msbuild /p:Configuration=Release pabcnetc.sln
MONO_IOMAP=case msbuild /p:Configuration=Release PascalABCNETLinux.sln
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
2015-12-29 17:56:29 +03:00
export MONO_IOMAP=all
cd ReleaseGenerators
mono ../bin/pabcnetc.exe RebuildStandartModulesMono.pas /rebuild
2015-12-29 17:56:29 +03:00
if [ $? -eq 0 ]; then
if [ $? -eq 0 ]; then
cd ../bin
mono TestRunner.exe
cd ..
2015-12-29 17:56:29 +03:00
fi
2015-12-29 20:36:47 +03:00
fi