File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
- org.gradle.unsafe.configuration-cache =true
1
+ # org.gradle.unsafe.configuration-cache=true
2
2
systemProp.gradle.enterprise.testretry.enabled =false
3
3
systemProp.org.gradle.unsafe.kotlin.assignment =true
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id(" com.gradle.enterprise " ) version(" 3.14.1 " )
3
- id(" com.gradle.common-custom-user-data-gradle-plugin" ) version(" 1.11.1 " )
2
+ id(" com.gradle.develocity " ) version(" 3.18 " )
3
+ id(" com.gradle.common-custom-user-data-gradle-plugin" ) version(" 2.0.2 " )
4
4
}
5
5
6
6
val isCI = System .getenv().containsKey(" CI" )
7
7
val isPR = isCI && System .getenv().containsKey(" GRADLE_ENTERPRISE_ACCESS_KEY" )
8
8
9
9
val publishAlwaysIf = System .getProperties()[" user.name" ] == " deepy"
10
10
11
- gradleEnterprise {
11
+ develocity {
12
+ server.set(" https://alexandernordlund.gradle-enterprise.cloud/" )
12
13
buildScan {
13
- if (publishAlwaysIf || isPR) {
14
- server = " https://alexandernordlund.gradle-enterprise.cloud/ "
14
+ publishing {
15
+ onlyIf { it.isAuthenticated }
15
16
}
16
- termsOfServiceUrl = " https://gradle.com/terms-of-service"
17
- if (isCI) {
18
- termsOfServiceAgree = " yes"
19
- }
20
- publishAlwaysIf(publishAlwaysIf)
17
+ uploadInBackground.set(! isCI)
21
18
22
19
capture {
23
- isTaskInputFiles = publishAlwaysIf || isPR
20
+ fileFingerprints.set( publishAlwaysIf || isPR)
24
21
}
25
- isUploadInBackground = ! isCI
22
+
26
23
obfuscation {
27
24
ipAddresses { addresses -> addresses.map { _ -> " 0.0.0.0" } }
25
+ if (! isCI) {
26
+ externalProcessName { processName -> " non-build-process" }
27
+ }
28
28
}
29
29
}
30
30
}
31
31
32
+
32
33
rootProject.name = " gradle-node-plugin"
You can’t perform that action at this time.
0 commit comments