Skip to content

Commit 575b579

Browse files
committed
Keep only 15.2
1 parent 7de623a commit 575b579

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/build.yaml

-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ jobs:
1313
'tvOS Simulator,name=Apple TV',
1414
'watchOS Simulator,name=Apple Watch Series 8 (41mm)'
1515
]
16-
xcode: [
17-
'15.2',
18-
'15.3'
19-
]
2016
steps:
2117
- uses: actions/checkout@v4
2218
- uses: ruby/setup-ruby@v1
@@ -25,5 +21,4 @@ jobs:
2521
- name: Run tests
2622
env:
2723
DESTINATION: platform=${{ matrix.destination }}
28-
XCODE_VERSION: ${{ matrix.xcode }}
2924
run: bundle exec fastlane test_ci

fastlane/Fastfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ platform :ios do
130130
end
131131

132132
before_all do |lane|
133-
xcode_version = ENV["XCODE_VERSION"] || "15.3"
134-
xcodes(version: xcode_version, select_for_current_build_only: true)
133+
xcodes(version: "15.2", select_for_current_build_only: true)
135134
end
136135

137136
after_all do |lane|

0 commit comments

Comments
 (0)