diff options
author | Joel Fischer <joeljfischer@gmail.com> | 2021-01-07 10:41:36 -0500 |
---|---|---|
committer | Joel Fischer <joeljfischer@gmail.com> | 2021-01-07 10:41:36 -0500 |
commit | af2ac2b3279eab2668f52d0150e10d6a30344767 (patch) | |
tree | 4d43647ca9c2cdf8d972fe0b51d9ec0b31e38e15 | |
parent | 18dfd8ae8d239eef2f6984a23cd4f137e1465c55 (diff) | |
download | sdl_ios-bugfix/issue-1884-github-CI-not-working-properly.tar.gz |
Update to newest xcode and ios versionsbugfix/issue-1884-github-CI-not-working-properly
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf53b5bda..a27d0f08d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ on: [push, pull_request] env: PROJECT: 'SmartDeviceLink-iOS.xcodeproj' - DESTINATION: 'platform=iOS Simulator,name=iPhone 11,OS=14.1' + DESTINATION: 'platform=iOS Simulator,name=iPhone 11,OS=14.3' jobs: build: @@ -27,7 +27,7 @@ jobs: # Select the Xcode version (the platform/simulator/OS available for testing depend on the Xcode version) - name: Select Xcode version - run: sudo xcode-select -switch /Applications/Xcode_12.1.app + run: sudo xcode-select -switch /Applications/Xcode_12.3.app - name: Build run: set -o pipefail && xcodebuild -scheme "${{ matrix.scheme }}" -destination "$DESTINATION" build | xcpretty --color --simple @@ -46,7 +46,7 @@ jobs: # Select the Xcode version (the platform/simulator/OS available for testing depend on the Xcode version) - name: Select Xcode version - run: sudo xcode-select -switch /Applications/Xcode_12.1.app + run: sudo xcode-select -switch /Applications/Xcode_12.3.app - name: Checkout repository uses: actions/checkout@v2.3.1 |