From 9f3ac2efa7b87a9e333ecc35c0cd5b66434ec164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Caetano?= Date: Thu, 27 Sep 2018 15:27:27 -0300 Subject: [PATCH] Fix test devices on Fastfile --- fastlane/Fastfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 4cd59d4..11669c3 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -10,7 +10,8 @@ default_platform :ios platform :ios do skip_docs - devices = ["iPhone X (~> 11)"] + devices = ["iPhone XR (~> 12)"] + devices << "iPhone X (~> 11)" if !Helper.is_ci? devices << "iPhone 7 (~> 10)" if !Helper.is_ci? devices << "iPhone 5s (~> 9)" if !Helper.is_ci? @@ -31,6 +32,8 @@ platform :ios do swiftlint( executable: "Example/Pods/Swiftlint/swiftlint", strict: true, + reporter: "emoji", + ) # The problem lies in the fact (or rather: serious bug in xcodebuild) that