diff options
| author | Mike McQuaid | 2015-09-21 15:11:22 +0100 |
|---|---|---|
| committer | Xu Cheng | 2015-09-23 21:46:43 +0800 |
| commit | 43f3ba9caa28bc5918484c86c6afd1012c5847ac (patch) | |
| tree | 72f82aa35eaf2d2c3fb27dbe4dd772bb145e2539 /Library/Homebrew/cmd | |
| parent | 9aecb1be2b89843c66852ad11ba6c22ef10d2e64 (diff) | |
| download | brew-43f3ba9caa28bc5918484c86c6afd1012c5847ac.tar.bz2 | |
test-bot: configure log lines instead of verbose.
The `--verbose` seems to cause some issues with compiling software like
`boost` under Xcode 7.
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/test-bot.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb index c6ba13d60..04410b187 100644 --- a/Library/Homebrew/cmd/test-bot.rb +++ b/Library/Homebrew/cmd/test-bot.rb @@ -18,7 +18,6 @@ # --dry-run: Just print commands, don't run them. # --fail-fast: Immediately exit on a failing step. # --verbose: Print out all logs in realtime -# --no-verbose-install: Don't run `brew install` with `--verbose`. # # --ci-master: Shortcut for Homebrew master branch CI options. # --ci-pr: Shortcut for Homebrew pull request CI options. @@ -532,7 +531,6 @@ module Homebrew test "brew", "fetch", "--retry", *formula_fetch_options test "brew", "uninstall", "--force", canonical_formula_name if formula.installed? install_args = [] - install_args << "--verbose" unless ARGV.include? "--no-verbose-install" install_args << "--build-bottle" unless ARGV.include? "--no-bottle" install_args << "--HEAD" if ARGV.include? "--HEAD" @@ -849,6 +847,7 @@ module Homebrew ENV["HOMEBREW_DEVELOPER"] = "1" ENV["HOMEBREW_SANDBOX"] = "1" ENV["HOMEBREW_NO_EMOJI"] = "1" + ENV["HOMEBREW_FAIL_LOG_LINES"] = "150" ARGV << "--verbose" if ENV["TRAVIS"] if ARGV.include?("--ci-master") || ARGV.include?("--ci-pr") \ |
