mirror of https://github.com/sbt/sbt.git
Merge pull request #2747 from eed3si9n/wip/quieter
[sbt 1.0] Quieter ivyLoggingLevel for CI
This commit is contained in:
commit
f2006e22cf
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
### Improvements
|
||||
|
||||
- `ivyLoggingLevel` is dropped to `UpdateLogging.Quiet` when CI environment is detected. [@eed3si9n][@eed3si9n]
|
||||
|
||||
[@eed3si9n]: https://github.com/eed3si9n
|
||||
Loading…
Reference in New Issue