From 07d7c4c3bf8ed087ae8c7f3a2a18b3db9a8ad42e Mon Sep 17 00:00:00 2001 From: Ben John Date: Sat, 18 Mar 2023 09:33:27 +0100 Subject: [PATCH] chore(ci): use correct xcode, ios and device --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39e3d98..1fe5f7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,8 @@ jobs: - name: Build testapp and test kvault (iOS) run: | cd iostests - sudo xcode-select -switch /Applications/Xcode_12.4.app - xcodebuild clean test -project TestApp.xcodeproj -scheme TestApp -destination "platform=iOS Simulator,OS=14.4,name=iPhone 12" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO + sudo xcode-select -switch /Applications/Xcode_14.2.app + xcodebuild clean test -project TestApp.xcodeproj -scheme TestApp -destination "platform=iOS Simulator,OS=16.3,name=iPhone 14" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO - name: Upload test result uses: actions/upload-artifact@v2 if: ${{ always() }}