From 46314fc5f746429d21bfa6fa095c3586fe732772 Mon Sep 17 00:00:00 2001 From: Nick Cooke Date: Thu, 14 Nov 2024 12:20:49 -0500 Subject: [PATCH 1/3] Remove xcpretty piping --- .../CocoapodsIntegrationTest/scripts/build_with_environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh b/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh index 1c45d2521fd..4d57b196747 100755 --- a/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh +++ b/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh @@ -36,7 +36,7 @@ function runXcodebuild() { parameters=("${buildcache_xcb_flags[@]}" "${parameters[@]}") echo xcodebuild "${parameters[@]}" - xcodebuild "${parameters[@]}" | xcpretty; result=$? + xcodebuild "${parameters[@]}"; result=$? } # Configures bundler environment using Gemfile at the specified path. From 817f5e42929ce20f78e73a58c0253a96580a8e03 Mon Sep 17 00:00:00 2001 From: Nick Cooke <36927374+ncooke3@users.noreply.github.com> Date: Thu, 14 Nov 2024 12:39:48 -0500 Subject: [PATCH 2/3] build with verbose flag --- .../CocoapodsIntegrationTest/scripts/build_with_environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh b/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh index 4d57b196747..56732e1d618 100755 --- a/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh +++ b/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh @@ -36,7 +36,7 @@ function runXcodebuild() { parameters=("${buildcache_xcb_flags[@]}" "${parameters[@]}") echo xcodebuild "${parameters[@]}" - xcodebuild "${parameters[@]}"; result=$? + xcodebuild "${parameters[@]}" -verbose; result=$? } # Configures bundler environment using Gemfile at the specified path. From 03738919a4020d8c5ccb84ff0d8e6b4800998076 Mon Sep 17 00:00:00 2001 From: Nick Cooke <36927374+ncooke3@users.noreply.github.com> Date: Thu, 14 Nov 2024 12:49:38 -0500 Subject: [PATCH 3/3] turn off code signing --- .../CocoapodsIntegrationTest/scripts/build_with_environment.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh b/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh index 56732e1d618..1558a67df3b 100755 --- a/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh +++ b/IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh @@ -29,6 +29,8 @@ function runXcodebuild() { -sdk 'iphonesimulator' -destination 'platform=iOS Simulator,name=iPhone 14' CODE_SIGNING_REQUIRED=NO + CODE_SIGNING_ALLOWED=NO + CODE_SIGN_IDENTITY=- clean build )