Skip to content

Commit

Permalink
Disable remote gradle cache until it is cleaned (apache#30584) (apach…
Browse files Browse the repository at this point in the history
…e#30596)

* Disable remote gradle cache until it is cleaned

* trigger test
  • Loading branch information
Abacn authored Mar 11, 2024
1 parent 93140cb commit 5e1920f
Show file tree
Hide file tree
Showing 2 changed files 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 5e1920f

Please sign in to comment.