Skip to content

Commit

Permalink
Fix ios tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RDMurray committed Apr 24, 2024
1 parent 9dab5a9 commit 49fe3d8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 114 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ios-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,16 @@ jobs:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: setup
run: |
sudo xcode-select -s /Applications/Xcode_15.3.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 13'
run: xcodebuild build-for-testing -workspace apps/ios/GuideDogs.xcworkspace -scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15' CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO |tee xcodebuild.log | xcpretty
- name: uploadlog
uses: actions/upload-artifact@v2
with:
name: xcodebuild-log
path: xcodebuild.log
- name: Test
run: xcodebuild test-without-building -workspace apps/ios/GuideDogs.xcworkspace -scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 13'
run: xcodebuild test-without-building -workspace apps/ios/GuideDogs.xcworkspace -scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15'

This file was deleted.

0 comments on commit 49fe3d8

Please sign in to comment.