We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a95c344 commit dfc56fbCopy full SHA for dfc56fb
settings.gradle
@@ -3,21 +3,24 @@ plugins {
3
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.3'
4
}
5
6
-def isCI = System.getenv('CI') == 'true'
+def isCI = System.getenv().containsKey('CI')
7
+def isLocal = !isCI
8
9
develocity {
10
server = 'https://ge.grails.org'
11
buildScan {
- publishing.onlyIf { isCI }
12
- uploadInBackground = !isCI
+ tag('grails-plugins')
13
+ tag('grails-cache-redis')
14
+ publishing.onlyIf { it.authenticated }
15
+ uploadInBackground = isLocal
16
17
18
19
buildCache {
- local { enabled = !isCI }
20
+ local { enabled = isLocal }
21
remote(develocity.buildCache) {
22
enabled = true
- push = isCI && System.getenv('DEVELOCITY_ACCESS_KEY')
23
+ push = isCI
24
25
26
0 commit comments