Skip to content

Commit

Permalink
Use the latest devices
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Oct 30, 2024
1 parent a86b875 commit 9b216cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ platform :ios do
swift_version = ENV["SWIFT_VERSION"] || "4.2"
run_tests(
workspace: "LineSDK.xcworkspace",
devices: ["iPhone 14"],
devices: ["iPhone 16"],
scheme: "LineSDK",
xcargs: "SWIFT_VERSION=#{swift_version}"
)

run_tests(
workspace: "LineSDK.xcworkspace",
devices: ["iPhone 14"],
devices: ["iPhone 16"],
scheme: "LineSDKObjC",
xcargs: "SWIFT_VERSION=#{swift_version}"
)
Expand All @@ -40,7 +40,7 @@ platform :ios do
lane :sample_tests do
run_tests(
workspace: "LineSDK.xcworkspace",
devices: ["iPhone 14"],
devices: ["iPhone 16"],
scheme: "LineSDKSample"
)
end
Expand All @@ -60,7 +60,7 @@ platform :ios do
sdk_path = `xcrun --sdk iphonesimulator --show-sdk-path`.strip
swiftc_flags = [
"-sdk", sdk_path,
"-target", "arm64-apple-ios16.4-simulator"
"-target", "arm64-apple-ios18.0-simulator"
].map { |flag| "-Xswiftc #{flag}" }
cc_flags = [
"-isysroot", sdk_path
Expand Down

0 comments on commit 9b216cc

Please sign in to comment.