Skip to content

Commit 12408fd

Browse files
Make cron checks work on v5 (#1048)
1 parent 22db346 commit 12408fd

16 files changed

+19
-6
lines changed

.github/workflows/cron-checks.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,19 @@ jobs:
2727
# setup_runtime: false
2828
- ios: "18.5"
2929
device: "iPhone 16 Pro"
30-
xcode: "26.0.1"
3130
setup_runtime: false
3231
- ios: "17.5"
3332
device: "iPhone 15 Pro"
34-
xcode: "26.0.1"
3533
setup_runtime: true
3634
- ios: "16.4"
3735
device: "iPhone 14 Pro"
38-
xcode: "16.4"
3936
setup_runtime: true
4037
fail-fast: false
4138
runs-on: macos-15
4239
env:
4340
GITHUB_EVENT: ${{ toJson(github.event) }}
4441
ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }}
45-
XCODE_VERSION: ${{ matrix.xcode }}
42+
XCODE_VERSION: "26.0.1"
4643
steps:
4744
- uses: actions/[email protected]
4845
- uses: ./.github/actions/bootstrap

.github/workflows/smoke-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
build-old-xcode:
6767
name: Build SDKs (Old Xcode)
6868
runs-on: macos-14
69-
if: false # Disabled for now ${{ github.event.inputs.record_snapshots != 'true' }}
69+
if: ${{ github.event.inputs.record_snapshots != 'true' }}
7070
env:
7171
XCODE_VERSION: "16.1"
7272
steps:
@@ -78,7 +78,7 @@ jobs:
7878
- uses: ./.github/actions/xcode-cache
7979
- uses: ./.github/actions/ruby-cache
8080
- name: Build SwiftUI
81-
run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true
81+
run: bundle exec fastlane test_ui device:"iPhone 16 (18.1)" build_for_testing:true
8282
timeout-minutes: 25
8383
- name: Build XCFrameworks
8484
run: bundle exec fastlane build_xcframeworks

Sources/StreamChatSwiftUI/ChatChannel/ChannelInfo/AddUsersViewModel.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import StreamChat
67
import SwiftUI
78

Sources/StreamChatSwiftUI/ChatChannel/ChannelInfo/ChatChannelInfoViewModel.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import Foundation
67
import StreamChat
78
import SwiftUI

Sources/StreamChatSwiftUI/ChatChannel/ChannelInfo/FileAttachmentsViewModel.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import Foundation
67
import StreamChat
78
import SwiftUI

Sources/StreamChatSwiftUI/ChatChannel/ChannelInfo/MediaAttachmentsViewModel.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import Foundation
67
import StreamChat
78
import SwiftUI

Sources/StreamChatSwiftUI/ChatChannel/ChannelInfo/PinnedMessagesViewModel.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import Foundation
67
import StreamChat
78
import SwiftUI

Sources/StreamChatSwiftUI/ChatChannel/ChatChannelViewModel.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,8 @@ import SwiftUI
797797
}
798798
case .move:
799799
continue
800+
@unknown default:
801+
continue
800802
}
801803
}
802804

Sources/StreamChatSwiftUI/ChatChannel/Composer/PhotoAssetsUtils.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import Photos
67
import StreamChat
78
import SwiftUI

Sources/StreamChatSwiftUI/ChatChannel/MessageList/AsyncVoiceMessages/VoiceRecordingContainerView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Copyright © 2025 Stream.io Inc. All rights reserved.
33
//
44

5+
import Combine
56
import StreamChat
67
import SwiftUI
78

0 commit comments

Comments
 (0)