Skip to content

Commit

Permalink
Merge branch 'master' of github.com:healthengineau/bitrise-step-bluep…
Browse files Browse the repository at this point in the history
…ill-build-test-for-ios
  • Loading branch information
reececomo committed Oct 28, 2019
2 parents 1441368 + c6f522a commit e829c40
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
30 changes: 30 additions & 0 deletions deps/brew-formulae/bluepill_5_0_0__xcode_11_0/bluepill.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
class Bluepill < Formula
desc "iOS testing tool that runs UI tests using multiple simulators"
homepage "https://github.com/linkedin/bluepill"
url "https://github.com/linkedin/bluepill.git",
:tag => "v5.0.0"
sha256 "9b147ccd040449f9a2a47c8cc884819eae098d93f7e987dce259982a729fd136"
head "https://github.com/linkedin/bluepill.git"

bottle do
cellar :any_skip_relocation
sha256 "0f1689fe856c9d81ca3095c7567e8e7733d3534ef1dfa5b8d12777ec51f4d618" => :catalina
sha256 "9429839c4f5c45f73fc81e6b601bcf058cdcbc2936a269125f04f59dfa6b6783" => :mojave
sha256 "57c90a31f9e2e6d8bbe31ff1c183efa6d57c934e826be3e1c7f2c34b6a40928f" => :high_sierra
end

depends_on :xcode => ["10.0", :build]

def install
xcodebuild "-workspace", "Bluepill.xcworkspace",
"-scheme", "bluepill",
"-configuration", "Release",
"SYMROOT=../"
bin.install "Release/bluepill", "Release/bp"
end

test do
assert_match "Usage:", shell_output("#{bin}/bluepill -h")
assert_match "Usage:", shell_output("#{bin}/bp -h")
end
end
3 changes: 2 additions & 1 deletion step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ is_requires_admin_user: true
is_always_run: false
is_skippable: false
inputs:
- bluepill_version: bluepill_4_1_1__xcode_10_2
- bluepill_version: bluepill_5_0_0__xcode_11_0
opts:
title: "Bluepill Version"
summary: "Which version of Bluepill to install/run?"
is_required: true
value_options:
- bluepill_5_0_0__xcode_11_0
- bluepill_4_1_1__xcode_10_2
- bluepill_3_1_1__xcode_10_1
- bluepill_3_1_0__xcode_10_0
Expand Down

0 comments on commit e829c40

Please sign in to comment.