From 14778c6f1fde9a37e00be69551865783faae94ae Mon Sep 17 00:00:00 2001 From: James Ball Date: Sat, 10 Feb 2024 12:44:52 +0000 Subject: [PATCH] Debug windows --- ci/test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/test.sh b/ci/test.sh index e6c7bea..fb441fe 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -12,6 +12,7 @@ if [ "$OS" = "mac" ]; then xcodebuild -configuration Release || exit 1 cd "build/Release" find . + echo "Running the test" # Run the test ./"$PLUGIN" fi @@ -22,6 +23,7 @@ if [ "$OS" = "linux" ]; then make CONFIG=Release cd build + echo "Running the test" # Run the test using the binary xvfb-run -a -s "-screen 0 1280x720x24" ./$PLUGIN 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" cd "x64/Release/ConsoleApp" + echo "Running the test" + ls # Run the test using the .exe file ./"$PLUGIN.exe" fi