Skip to content

Commit

Permalink
Use upper case i in CI abbreviation
Browse files Browse the repository at this point in the history
  • Loading branch information
c00ler committed Apr 25, 2024
1 parent 8cd83d7 commit 1924654
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/PekkoDevelocityPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object PekkoDevelocityPlugin extends AutoPlugin {

override lazy val buildSettings: Seq[Setting[_]] = Def.settings(
develocityConfiguration := {
val isInsideCi = insideCI.value
val isInsideCI = insideCI.value

val original = develocityConfiguration.value
val apacheDevelocityConfiguration =
Expand All @@ -49,11 +49,11 @@ object PekkoDevelocityPlugin extends AutoPlugin {
.withBuildScan(
original.buildScan
.withPublishing(Publishing.onlyIf(_.authenticated))
.withBackgroundUpload(!isInsideCi)
.withBackgroundUpload(!isInsideCI)
.withObfuscation(
original.buildScan.obfuscation
.withIpAddresses(_.map(_ => ObfuscatedIPv4Address))))
if (isInsideCi) {
if (isInsideCI) {
apacheDevelocityConfiguration
.withTestRetryConfiguration(
original.testRetryConfiguration
Expand Down

0 comments on commit 1924654

Please sign in to comment.