You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// // TODO: can we serve a remote cache out of CloudFront instead? https://docs.gradle.org/8.1/userguide/build_cache.html#sec:build_cache_configure_remote
val regionEnv:Provider<String> = providers.environmentVariable("AWS_REGION")
76
+
val bucketEnv:Provider<String> = providers.environmentVariable("S3_BUILD_CACHE_BUCKET")
77
+
val prefixEnv:Provider<String> = providers.environmentVariable("S3_BUILD_CACHE_PREFIX")
78
+
if (regionEnv.isPresent && bucketEnv.isPresent && prefixEnv.isPresent) {
79
+
// TODO: can we serve a remote cache out of CloudFront instead? https://docs.gradle.org/8.1/userguide/build_cache.html#sec:build_cache_configure_remote
0 commit comments