Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion .github/workflows/cron-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
strategy:
matrix:
include:
- ios: "26.0"
device: "iPhone 17 Pro"
setup_runtime: false
- ios: "18.5"
device: "iPhone 16 Pro"
setup_runtime: false
Expand All @@ -36,7 +39,7 @@ jobs:
fail-fast: false
runs-on: macos-15
env:
XCODE_VERSION: "16.4"
XCODE_VERSION: "26.0"
steps:
- uses: actions/checkout@v4.1.1
- uses: ./.github/actions/bootstrap
Expand Down Expand Up @@ -70,6 +73,8 @@ jobs:
strategy:
matrix:
include:
- xcode: 26.0 # swift 6.2
os: macos-15
- xcode: 16.4 # swift 6.1
os: macos-15
- xcode: 16.1 # swift 6.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:

env:
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)"
IOS_SIMULATOR_DEVICE: "iPhone 17 Pro (26.0)"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PR_NUM: ${{ github.event.pull_request.number }}

Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'json'
require 'net/http'
import 'Sonarfile'

xcode_version = ENV['XCODE_VERSION'] || '16.4'
xcode_version = ENV['XCODE_VERSION'] || '26.0'
xcode_project = 'StreamFeeds.xcodeproj'
sdk_names = ['StreamFeeds']
github_repo = ENV['GITHUB_REPOSITORY'] || 'GetStream/stream-feeds-swift'
Expand Down
7 changes: 1 addition & 6 deletions fastlane/Scanfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
code_coverage(true)

configuration("Debug")

configuration('Debug')
result_bundle(true)

skip_slack(true)
Loading