Merge pull request #2747 from eed3si9n/wip/quieter

[sbt 1.0] Quieter ivyLoggingLevel for CI
This commit is contained in:
eugene yokota 2016-09-16 03:06:06 -04:00 committed by GitHub
commit f2006e22cf
2 changed files with 10 additions and 1 deletions

View File

@ -1181,7 +1181,11 @@ object Classpaths {
dependencyOverrides :== Set.empty,
libraryDependencies :== Nil,
excludeDependencies :== Nil,
ivyLoggingLevel :== UpdateLogging.Default,
ivyLoggingLevel :== {
// This will suppress "Resolving..." logs on Jenkins and Travis.
if (sys.env.get("BUILD_NUMBER").isDefined || sys.env.get("CI").isDefined) UpdateLogging.Quiet
else UpdateLogging.Default
},
ivyXML :== NodeSeq.Empty,
ivyValidate :== false,
moduleConfigurations :== Nil,

View File

@ -0,0 +1,5 @@
### Improvements
- `ivyLoggingLevel` is dropped to `UpdateLogging.Quiet` when CI environment is detected. [@eed3si9n][@eed3si9n]
[@eed3si9n]: https://github.com/eed3si9n