Skip to content

Commit 9f3ac2e

Browse files
committed
Fix test devices on Fastfile
1 parent ee87852 commit 9f3ac2e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

fastlane/Fastfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ default_platform :ios
1010
platform :ios do
1111
skip_docs
1212

13-
devices = ["iPhone X (~> 11)"]
13+
devices = ["iPhone XR (~> 12)"]
14+
devices << "iPhone X (~> 11)" if !Helper.is_ci?
1415
devices << "iPhone 7 (~> 10)" if !Helper.is_ci?
1516
devices << "iPhone 5s (~> 9)" if !Helper.is_ci?
1617

@@ -31,6 +32,8 @@ platform :ios do
3132
swiftlint(
3233
executable: "Example/Pods/Swiftlint/swiftlint",
3334
strict: true,
35+
reporter: "emoji",
36+
3437
)
3538

3639
# The problem lies in the fact (or rather: serious bug in xcodebuild) that

0 commit comments

Comments
 (0)