Skip to content

Commit

Permalink
Merge branch 'soundscape-community:main' into audioBeaconSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanThomas21 authored Nov 15, 2024
2 parents a37730c + f11724c commit 2ea6fa5
Show file tree
Hide file tree
Showing 4 changed files with 360 additions and 356 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ios-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,21 @@ on:
- 'apps/ios/**'
jobs:
unit-tests:
runs-on: macos-14
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: setup
run: |
sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer
# Find path of latest installed Xcode version
xcode_path="$(ls -d /Applications/Xcode*.app | grep -v -E 'Release_Candidate|Beta' | sort -V | tail -n1)"
echo "Xcode path: ${xcode_path}"
sudo xcode-select -s "${xcode_path}/Contents/Developer"
xcodebuild -version
gem install xcpretty
- name: Build
run: >
xcodebuild build-for-testing -workspace apps/ios/GuideDogs.xcworkspace
-scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15,OS=18.1'
-scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15'
CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
| tee xcodebuild.log | xcpretty && exit ${PIPESTATUS[0]}
- name: uploadlog
Expand All @@ -34,4 +38,4 @@ jobs:
- name: Test
run: >
xcodebuild test-without-building -workspace apps/ios/GuideDogs.xcworkspace
-scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15,OS=18.0'
-scheme Soundscape -destination 'platform=iOS Simulator,name=iPhone 15'
Loading

0 comments on commit 2ea6fa5

Please sign in to comment.