-
Notifications
You must be signed in to change notification settings - Fork 28
/
settings.gradle
49 lines (42 loc) · 1.27 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
includeBuild("plugins")
include ':app',
':app-partial-users',
':core',
':core-api',
':core-testing',
':core-android-testing',
':core-android-api',
':navigation-api',
':feature:ui-common-api',
':feature:identity',
':feature:identity-api',
':feature:network-status',
':feature:in-app-update',
':feature:config-debug-api',
':feature:config-debug',
':feature:performance',
':feature:users',
':feature:repo',
':feature:push-api',
':feature:push',
':feature:settings',
':feature:about',
':feature:shortcuts',
':feature:chrome-custom-tabs'
buildCache {
remote(HttpBuildCache) {
url = 'http://34.85.222.61:5071/cache/'
allowUntrustedServer = true
allowInsecureProtocol = true
push = (System.getenv("CI") == "true")
enabled = (System.getenv("CI") == "true") // the pulls on different networks are so problematic and project so small that we keep CI only
}
local {
// The rationale behind disabling local cache on CI
// is that the large local cache packing and unpacking
// is unnecessary overhead and take tens of seconds for larger entries.
// Storing all local outputs is ineffective
// and leads to archive of Gigabyte in size and yields only low cache hits.
enabled = (System.getenv("CI") != "true")
}
}