aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/test-bot.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-12-11 08:20:57 +0000
committerMike McQuaid2015-12-11 08:48:59 +0000
commitd48bdcdabb077758b9ea72453d68fb7ac82271fc (patch)
treeb720e227f8b32f4111a29c464a8df4517fbc9e31 /Library/Homebrew/cmd/test-bot.rb
parent5773ca64c509094b261bdcfc43cadc9c8fd566c5 (diff)
downloadbrew-d48bdcdabb077758b9ea72453d68fb7ac82271fc.tar.bz2
test-bot: remove ci-reset-and-update.
Diffstat (limited to 'Library/Homebrew/cmd/test-bot.rb')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index c4dfc9e68..e742656f8 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -22,7 +22,6 @@
# --ci-pr: Shortcut for Homebrew pull request CI options.
# --ci-testing: Shortcut for Homebrew testing CI options.
# --ci-upload: Homebrew CI bottle upload.
-# --ci-reset-and-update: Homebrew CI repository and tap reset and update.
require "formula"
require "utils"
@@ -759,20 +758,6 @@ module Homebrew
end
end
- def test_bot_ci_reset_and_update
- Tap.each do |tap|
- next unless tap.git?
- cd tap.path do
- quiet_system "git", "am", "--abort"
- quiet_system "git", "rebase", "--abort"
- safe_system "git", "checkout", "-f", "master"
- safe_system "git", "reset", "--hard", "origin/master"
- end
- end
-
- exec "brew", "update"
- end
-
def test_ci_upload(tap)
jenkins = ENV["JENKINS_HOME"]
job = ENV["UPSTREAM_JOB_NAME"]