From 04b6c56375ed90eb453206e25996887eafa78c87 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 20 May 2022 15:52:22 +0200 Subject: [PATCH] build/bot: remove xctool invocation in macos build script (#24918) --- build/bot/macos-build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/bot/macos-build.sh b/build/bot/macos-build.sh index d7ee45a252..f1620bca86 100644 --- a/build/bot/macos-build.sh +++ b/build/bot/macos-build.sh @@ -2,6 +2,10 @@ set -e -x +# -- Check XCode version +xcodebuild -version +# xcrun simctl list + # -- Build for macOS and upload to Azure go run build/ci.go install -dlgo go run build/ci.go archive -type tar # -signer OSX_SIGNING_KEY -upload gethstore/builds @@ -14,9 +18,5 @@ go run build/ci.go archive -type tar # -signer OSX_SIGNING_KEY -upload gethstore # git clone --depth=1 https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master # pod setup --verbose -# -- Check XCode version -xctool -version -xcrun simctl list - # # -- Build for iOS and upload to Azure # go run build/ci.go xcode -signer IOS_SIGNING_KEY -upload gethstore/builds