Skip to content

Commit 2f80f7e

Browse files
committed
ci: update macOS runner and log Xcode version
- Update the GitHub Actions runner from `macos-latest` to `macos-26` in the iOS workflow. - Add a "Show Xcode version" step to display the active Xcode version and available SDKs during the build.
1 parent ed0f594 commit 2f80f7e

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ios.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ on:
1111
jobs:
1212
build:
1313
name: Build and Test default scheme using any available iPhone simulator
14-
runs-on: macos-latest
14+
runs-on: macos-26
1515

1616
steps:
1717
- name: Check out
1818
uses: actions/checkout@v6
19+
- name: Show Xcode version
20+
run: |
21+
xcodebuild -version
22+
xcodebuild -showsdks
1923
- name: Set up JDK 17
2024
uses: actions/setup-java@v5
2125
with:
@@ -57,4 +61,4 @@ jobs:
5761
app/iosApp/iosApp.ipa
5862
app/iosApp/fastlane/test_output/report.html
5963
/Users/runner/Library/Logs/gym/iosApp-iosApp.log
60-
/Users/runner/Library/Logs/scan/iosApp-iosApp.log
64+
/Users/runner/Library/Logs/scan/iosApp-iosApp.log

0 commit comments

Comments
 (0)