pull/218/head
James Ball 2024-02-10 12:44:52 +00:00
rodzic 6e00c97426
commit 14778c6f1f
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -12,6 +12,7 @@ if [ "$OS" = "mac" ]; then
xcodebuild -configuration Release || exit 1 xcodebuild -configuration Release || exit 1
cd "build/Release" cd "build/Release"
find . find .
echo "Running the test"
# Run the test # Run the test
./"$PLUGIN" ./"$PLUGIN"
fi fi
@ -22,6 +23,7 @@ if [ "$OS" = "linux" ]; then
make CONFIG=Release make CONFIG=Release
cd build cd build
echo "Running the test"
# Run the test using the binary # Run the test using the binary
xvfb-run -a -s "-screen 0 1280x720x24" ./$PLUGIN xvfb-run -a -s "-screen 0 1280x720x24" ./$PLUGIN
fi fi
@ -37,6 +39,8 @@ if [ "$OS" = "win" ]; then
"$MSBUILD_EXE" "$PLUGIN.sln" "//p:VisualStudioVersion=16.0" "//m" "//t:Build" "//p:Configuration=Release" "//p:Platform=x64" "//p:PreferredToolArchitecture=x64" "$MSBUILD_EXE" "$PLUGIN.sln" "//p:VisualStudioVersion=16.0" "//m" "//t:Build" "//p:Configuration=Release" "//p:Platform=x64" "//p:PreferredToolArchitecture=x64"
cd "x64/Release/ConsoleApp" cd "x64/Release/ConsoleApp"
echo "Running the test"
ls
# Run the test using the .exe file # Run the test using the .exe file
./"$PLUGIN.exe" ./"$PLUGIN.exe"
fi fi