Skip to content

Commit

Permalink
Disable remote gradle cache until it is cleaned
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn committed Mar 8, 2024
1 parent a391198 commit ea430ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ buildCache {
username = System.getenv("GRADLE_ENTERPRISE_CACHE_USERNAME")
password = System.getenv("GRADLE_ENTERPRISE_CACHE_PASSWORD")
}
isEnabled = !System.getenv("GRADLE_ENTERPRISE_CACHE_USERNAME").isNullOrBlank()
isPush = isCi
// TODO(yathu) re-enable when remote gradle cache cleaned up
isEnabled = false // !System.getenv("GRADLE_ENTERPRISE_CACHE_USERNAME").isNullOrBlank()
isPush = false
}
}

Expand Down

0 comments on commit ea430ad

Please sign in to comment.