Skip to content

Commit

Permalink
Fix test devices on Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fjcaetano committed Sep 27, 2018
1 parent ee87852 commit 9f3ac2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand All @@ -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
Expand Down

0 comments on commit 9f3ac2e

Please sign in to comment.