Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:

build-ios-sample:
name: Build iOS Sample
runs-on: macos-15
runs-on: macos-26
needs: [test]
steps:
- uses: actions/checkout@v7
Expand All @@ -173,7 +173,7 @@ jobs:

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.4
xcode-version: 26.5

- name: Xcode version
run: |
Expand All @@ -188,7 +188,7 @@ jobs:
with:
path: |
~/.konan
key: ${{ runner.os }}-xcode-16.4-v1-${{ hashFiles('**/libs.versions.toml') }}
key: ${{ runner.os }}-xcode-26.5-v1-${{ hashFiles('**/libs.versions.toml') }}

- name: Build iOS Sample
run: set -o pipefail && xcodebuild -project samples/multiplatform/iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' build | xcbeautify --renderer github-actions
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

build-tvos-sample:
name: Build tvOS Sample
runs-on: macos-15
runs-on: macos-26
needs: [test]
steps:
- uses: actions/checkout@v7
Expand All @@ -251,7 +251,7 @@ jobs:

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.4
xcode-version: 26.5

- name: Xcode version
run: |
Expand All @@ -266,15 +266,15 @@ jobs:
with:
path: |
~/.konan
key: ${{ runner.os }}-xcode-16.4-v1-${{ hashFiles('**/libs.versions.toml') }}
key: ${{ runner.os }}-xcode-26.5-v1-${{ hashFiles('**/libs.versions.toml') }}

- name: Build tvOS Sample
run: set -o pipefail && xcodebuild -project samples/multiplatform/iosApp/iosApp.xcodeproj -configuration Debug -scheme 'iosApp' -destination 'generic/platform=tvOS Simulator' ARCHS=arm64 ONLY_ACTIVE_ARCH=YES build | xcbeautify --renderer github-actions


build-watchOS-sample:
name: Build watchOS Sample
runs-on: macos-15
runs-on: macos-26
needs: [test]
steps:
- uses: actions/checkout@v7
Expand All @@ -291,7 +291,7 @@ jobs:

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.4
xcode-version: 26.5

- name: Xcode version
run: |
Expand All @@ -306,7 +306,7 @@ jobs:
with:
path: |
~/.konan
key: ${{ runner.os }}-xcode-16.4-v1-${{ hashFiles('**/libs.versions.toml') }}
key: ${{ runner.os }}-xcode-26.5-v1-${{ hashFiles('**/libs.versions.toml') }}

- name: Build watchOS Sample
run: set -o pipefail && xcodebuild -project samples/multiplatform/iosApp/iosApp.xcodeproj -scheme 'RssParserDemo Watch App' -destination 'generic/platform=watchOS Simulator' -configuration Debug ARCHS=arm64 ONLY_ACTIVE_ARCH=YES CODE_SIGNING_ALLOWED=NO build | xcbeautify --renderer github-actions
Expand Down
Loading