From 089e35b0d3de3785d2661a8878d64521b0e06b44 Mon Sep 17 00:00:00 2001 From: Robbie Murray Date: Wed, 13 Nov 2024 13:16:03 +0000 Subject: [PATCH] .github/workflows/ios-tests.yml: output xcode version --- .github/workflows/ios-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ios-tests.yml b/.github/workflows/ios-tests.yml index bb1dc0b..6c14331 100644 --- a/.github/workflows/ios-tests.yml +++ b/.github/workflows/ios-tests.yml @@ -20,7 +20,9 @@ jobs: run: | # Find path of latest installed Xcode version xcode_path="$(ls -d /Applications/Xcode*.app | sort -V | tail -n1)" + echo "Xcode path: ${xcode_path}" sudo xcode-select -s "${xcode_path}/Contents/Developer" + xcodebuild -version gem install xcpretty - name: Build run: >