Skip to content
4 changes: 2 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
env:
scheme: ${{ 'SDKHostApp' }}
platform: ${{ 'iOS Simulator' }}
os: ${{ '16.2' }}
device: ${{ 'iPhone 13' }}
os: ${{ '18.1' }}
device: ${{ 'iPhone 16' }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can just delete these. What happens if you don't include them?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These params are used in the xcodebuild invocation build later in the script so that command will fail. Instead, we should update the xcodebuild command to use whatever the latest os version is. Can you make that update?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will do!

run: |
# xcrun xctrace returns via stderr, not the expected stdout (see https://developer.apple.com/forums/thread/663959)
if [ $scheme = default ]; then scheme=$(cat default); fi
Expand Down