|
@@ -6,9 +6,9 @@ platform :ios do
|
|
|
desc "Runs all the tests"
|
|
desc "Runs all the tests"
|
|
|
lane :tests do
|
|
lane :tests do
|
|
|
test(destination: "platform=macOS")
|
|
test(destination: "platform=macOS")
|
|
|
- test(destination: "platform=iOS Simulator,name=iPhone 15,OS=17.5")
|
|
|
|
|
- test(destination: "platform=tvOS Simulator,name=Apple TV,OS=17.5")
|
|
|
|
|
- build(destination: "platform=watchOS Simulator,name=Apple Watch Series 9 (41mm),OS=10.5")
|
|
|
|
|
|
|
+ test(destination: "platform=iOS Simulator,name=iPhone 16,OS=18.5")
|
|
|
|
|
+ test(destination: "platform=tvOS Simulator,name=Apple TV,OS=18.5")
|
|
|
|
|
+ build(destination: "platform=watchOS Simulator,name=Apple Watch Series 10 (42mm),OS=11.5")
|
|
|
end
|
|
end
|
|
|
|
|
|
|
|
lane :test_ci do
|
|
lane :test_ci do
|
|
@@ -93,7 +93,7 @@ platform :ios do
|
|
|
lane :xcframework do |options|
|
|
lane :xcframework do |options|
|
|
|
version = options[:version]
|
|
version = options[:version]
|
|
|
swift_version = options[:swift_version] || "5.0"
|
|
swift_version = options[:swift_version] || "5.0"
|
|
|
- xcode_version = options[:xcode_version] || "16.4"
|
|
|
|
|
|
|
+ xcode_version = options[:xcode_version] || "26.0.1"
|
|
|
|
|
|
|
|
xcodes(version: xcode_version, select_for_current_build_only: true)
|
|
xcodes(version: xcode_version, select_for_current_build_only: true)
|
|
|
FileUtils.rm_rf '../build'
|
|
FileUtils.rm_rf '../build'
|
|
@@ -166,7 +166,7 @@ platform :ios do
|
|
|
end
|
|
end
|
|
|
|
|
|
|
|
before_all do |lane|
|
|
before_all do |lane|
|
|
|
- xcode_version = ENV["XCODE_VERSION"] || "16.4"
|
|
|
|
|
|
|
+ xcode_version = ENV["XCODE_VERSION"] || "26.0.1"
|
|
|
xcodes(version: xcode_version, select_for_current_build_only: true)
|
|
xcodes(version: xcode_version, select_for_current_build_only: true)
|
|
|
end
|
|
end
|
|
|
|
|
|