Skip to content

Commit

Permalink
Update swift.yml
Browse files Browse the repository at this point in the history
Use what works in terminal
  • Loading branch information
AppDevGuy authored Sep 9, 2020
1 parent 27dbb7a commit c1ead5e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,14 @@ jobs:
test:
name: Test
runs-on: macOS-latest
strategy:
matrix:
destination: ['platform=iOS Simulator, OS:13.7, name:iPhone 11 Pro Max']

steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
cd Example
pod install
xcodebuild clean test -workspace OSSSpeechKit.xcworkspace -scheme OSSSpeechKit-Example -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
xcodebuild clean test -workspace OSSSpeechKit.xcworkspace -scheme OSSSpeechKit-Example -destination "platform=iOS Simulator,OS=13.7,name=iPhone 11 Pro Max" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
bash <(curl https://codecov.io/bash | sed 's/"$beta_xcode_partials"//g')
env:
destination: ${{ matrix.destination }}
destination: "platform=iOS Simulator,OS=13.7,name=iPhone 11 Pro Max"

0 comments on commit c1ead5e

Please sign in to comment.