diff --git a/maestro-client/src/main/resources/maestro-app.apk b/maestro-client/src/main/resources/maestro-app.apk deleted file mode 100644 index 4af2d623e9..0000000000 Binary files a/maestro-client/src/main/resources/maestro-app.apk and /dev/null differ diff --git a/maestro-client/src/main/resources/maestro-server.apk b/maestro-client/src/main/resources/maestro-server.apk deleted file mode 100644 index bdbc33015c..0000000000 Binary files a/maestro-client/src/main/resources/maestro-server.apk and /dev/null differ diff --git a/maestro-ios-driver/src/main/resources/maestro-driver-ios.zip b/maestro-ios-driver/src/main/resources/maestro-driver-ios.zip deleted file mode 100644 index 57efc0ff27..0000000000 Binary files a/maestro-ios-driver/src/main/resources/maestro-driver-ios.zip and /dev/null differ diff --git a/maestro-ios-driver/src/main/resources/maestro-driver-iosUITests-Runner.zip b/maestro-ios-driver/src/main/resources/maestro-driver-iosUITests-Runner.zip deleted file mode 100644 index 95d3f6f470..0000000000 Binary files a/maestro-ios-driver/src/main/resources/maestro-driver-iosUITests-Runner.zip and /dev/null differ diff --git a/maestro-ios-xctest-runner/build-maestro-ios-runner.sh b/maestro-ios-xctest-runner/build-maestro-ios-runner.sh index 2ea3a6757d..f29cb261cd 100755 --- a/maestro-ios-xctest-runner/build-maestro-ios-runner.sh +++ b/maestro-ios-xctest-runner/build-maestro-ios-runner.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash + set -euo pipefail if [ "$(basename "$PWD")" != "maestro" ]; then @@ -6,6 +7,8 @@ if [ "$(basename "$PWD")" != "maestro" ]; then exit 1 fi +## Build the UI test + rm -rf ./build/Products xcodebuild \ @@ -21,6 +24,7 @@ xcodebuild \ build-for-testing ## Remove intermediates, output and copy runner in maestro-ios-driver + cp -r \ ./build/Products/Debug-iphonesimulator/maestro-driver-iosUITests-Runner.app \ ./maestro-ios-driver/src/main/resources/maestro-driver-iosUITests-Runner.app @@ -33,7 +37,6 @@ cp \ ./build/Products/*.xctestrun \ ./maestro-ios-driver/src/main/resources/maestro-driver-ios-config.xctestrun - cd ./maestro-ios-driver/src/main/resources zip -r maestro-driver-iosUITests-Runner.zip ./maestro-driver-iosUITests-Runner.app zip -r maestro-driver-ios.zip ./maestro-driver-ios.app