From 6ae5ea507198e596604ee78f1fc9fcef73f5cecd Mon Sep 17 00:00:00 2001 From: Robbie Murray Date: Sat, 9 Nov 2024 20:21:26 +0000 Subject: [PATCH] update ios tests workflow to Xcode 16.1 and iOS 18.1 --- .github/workflows/ios-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ios-tests.yml b/.github/workflows/ios-tests.yml index 968fc137..3f0ebb5c 100644 --- a/.github/workflows/ios-tests.yml +++ b/.github/workflows/ios-tests.yml @@ -18,12 +18,12 @@ jobs: - uses: actions/checkout@v4 - name: setup run: | - sudo xcode-select -s /Applications/Xcode_15.3.app/Contents/Developer + sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer gem install xcpretty - name: Build run: > xcodebuild build-for-testing -workspace apps/ios/GuideDogs.xcworkspace - -scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15,OS=18.0' + -scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15,OS=18.1' CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | tee xcodebuild.log | xcpretty && exit ${PIPESTATUS[0]} - name: uploadlog