File tree 5 files changed +70
-0
lines changed
5 files changed +70
-0
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,18 @@ inputs:
23
23
args :
24
24
description : " Additional arguments to pass to Gradle"
25
25
required : false
26
+ develocityUrl :
27
+ description : " The URL for the Develocity server to connect to"
28
+ required : false
26
29
gradleEnterpriseUrl :
30
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
27
31
description : " The URL for the Gradle Enterprise server to connect to"
28
32
required : false
33
+ enableDevelocity :
34
+ description : " Enables Develocity on a project not already connected"
35
+ required : false
29
36
enableGradleEnterprise :
37
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
30
38
description : " Enables Gradle Enterprise on a project not already connected"
31
39
required : false
32
40
outputs :
@@ -76,10 +84,16 @@ runs:
76
84
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
77
85
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
78
86
fi
87
+ if [ ! -z "${{ inputs.develocityUrl }}" ]; then
88
+ ARG_GE_URL="${{ inputs.develocityUrl }}"
89
+ fi
79
90
ARG_GE_ENABLE=""
80
91
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
81
92
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
82
93
fi
94
+ if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
95
+ ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
96
+ fi
83
97
84
98
# Navigate into the folder containing the validation scripts
85
99
cd gradle-enterprise-gradle-build-validation
Original file line number Diff line number Diff line change @@ -23,10 +23,18 @@ inputs:
23
23
args :
24
24
description : " Additional arguments to pass to Gradle"
25
25
required : false
26
+ develocityUrl :
27
+ description : " The URL for the Develocity server to connect to"
28
+ required : false
26
29
gradleEnterpriseUrl :
30
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
27
31
description : " The URL for the Gradle Enterprise server to connect to"
28
32
required : false
33
+ enableDevelocity :
34
+ description : " Enables Develocity on a project not already connected"
35
+ required : false
29
36
enableGradleEnterprise :
37
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
30
38
description : " Enables Gradle Enterprise on a project not already connected"
31
39
required : false
32
40
failIfNotFullyCacheable :
@@ -79,10 +87,16 @@ runs:
79
87
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
80
88
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
81
89
fi
90
+ if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91
+ ARG_GE_URL="${{ inputs.develocityUrl }}"
92
+ fi
82
93
ARG_GE_ENABLE=""
83
94
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
84
95
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
85
96
fi
97
+ if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98
+ ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99
+ fi
86
100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87
101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88
102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
Original file line number Diff line number Diff line change @@ -23,10 +23,18 @@ inputs:
23
23
args :
24
24
description : " Additional arguments to pass to Gradle"
25
25
required : false
26
+ develocityUrl :
27
+ description : " The URL for the Develocity server to connect to"
28
+ required : false
26
29
gradleEnterpriseUrl :
30
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
27
31
description : " The URL for the Gradle Enterprise server to connect to"
28
32
required : false
33
+ enableDevelocity :
34
+ description : " Enables Develocity on a project not already connected"
35
+ required : false
29
36
enableGradleEnterprise :
37
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
30
38
description : " Enables Gradle Enterprise on a project not already connected"
31
39
required : false
32
40
failIfNotFullyCacheable :
@@ -79,10 +87,16 @@ runs:
79
87
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
80
88
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
81
89
fi
90
+ if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91
+ ARG_GE_URL="${{ inputs.develocityUrl }}"
92
+ fi
82
93
ARG_GE_ENABLE=""
83
94
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
84
95
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
85
96
fi
97
+ if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98
+ ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99
+ fi
86
100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87
101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88
102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
Original file line number Diff line number Diff line change @@ -23,10 +23,18 @@ inputs:
23
23
args :
24
24
description : " Additional arguments to pass to Maven"
25
25
required : false
26
+ develocityUrl :
27
+ description : " The URL for the Develocity server to connect to"
28
+ required : false
26
29
gradleEnterpriseUrl :
30
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
27
31
description : " The URL for the Gradle Enterprise server to connect to"
28
32
required : false
33
+ enableDevelocity :
34
+ description : " Enables Develocity on a project not already connected"
35
+ required : false
29
36
enableGradleEnterprise :
37
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
30
38
description : " Enables Gradle Enterprise on a project not already connected"
31
39
required : false
32
40
failIfNotFullyCacheable :
@@ -79,10 +87,16 @@ runs:
79
87
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
80
88
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
81
89
fi
90
+ if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91
+ ARG_GE_URL="${{ inputs.develocityUrl }}"
92
+ fi
82
93
ARG_GE_ENABLE=""
83
94
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
84
95
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
85
96
fi
97
+ if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98
+ ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99
+ fi
86
100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87
101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88
102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
Original file line number Diff line number Diff line change @@ -23,10 +23,18 @@ inputs:
23
23
args :
24
24
description : " Additional arguments to pass to Maven"
25
25
required : false
26
+ develocityUrl :
27
+ description : " The URL for the Develocity server to connect to"
28
+ required : false
26
29
gradleEnterpriseUrl :
30
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
27
31
description : " The URL for the Gradle Enterprise server to connect to"
28
32
required : false
33
+ enableDevelocity :
34
+ description : " Enables Develocity on a project not already connected"
35
+ required : false
29
36
enableGradleEnterprise :
37
+ deprecationMessage : " This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
30
38
description : " Enables Gradle Enterprise on a project not already connected"
31
39
required : false
32
40
failIfNotFullyCacheable :
@@ -79,10 +87,16 @@ runs:
79
87
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
80
88
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
81
89
fi
90
+ if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91
+ ARG_GE_URL="${{ inputs.develocityUrl }}"
92
+ fi
82
93
ARG_GE_ENABLE=""
83
94
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
84
95
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
85
96
fi
97
+ if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98
+ ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99
+ fi
86
100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87
101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88
102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
You can’t perform that action at this time.
0 commit comments