summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2021-07-06 09:23:20 -0400
committerJoel Fischer <joeljfischer@gmail.com>2021-07-06 09:23:20 -0400
commitb1ac06f11cc99fd7f87464a2e1c1ffd7a0817696 (patch)
tree395b0deaac04d913d2b9221e4af9b33821c2920b /.github
parent7c13134735c122c5b8f6e0a038ff9283752c534b (diff)
downloadsdl_ios-b1ac06f11cc99fd7f87464a2e1c1ffd7a0817696.tar.gz
Update test.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 45d857d1b..d2a87cc76 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,11 +1,11 @@
name: SmartDeviceLink Tests
# This workflow is triggered on a push or pull request.
-on: [push, pull_request]
+on: [push, pull_request, workflow_dispatch]
env:
PROJECT: 'SmartDeviceLink-iOS.xcodeproj'
- DESTINATION: 'platform=iOS Simulator,name=iPhone 12,OS=14.4'
+ DESTINATION: 'platform=iOS Simulator,name=iPhone 12,OS=14.6'
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.4.app
+ run: sudo xcode-select -switch /Applications/Xcode_12.5.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.4.app
+ run: sudo xcode-select -switch /Applications/Xcode_12.5.app
- name: Checkout repository
uses: actions/checkout@v2.3.1