File tree 5 files changed +5
-40
lines changed
5 files changed +5
-40
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ inputs:
29
29
enableGradleEnterprise :
30
30
description : " Enables Gradle Enterprise on a project not already connected"
31
31
required : false
32
- debug :
33
- description : " Enable debug logging for this experiment of the build validation scripts"
34
- required : false
35
32
outputs :
36
33
buildScanFirstBuild :
37
34
description : " First build scan url"
83
80
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
84
81
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
85
82
fi
86
- ARG_DEBUG=""
87
- if [ "${{ inputs.debug }}" == "true" ]; then
88
- ARG_DEBUG="${{ inputs.debug }}"
89
- fi
90
83
91
84
# Navigate into the folder containing the validation scripts
92
85
cd gradle-enterprise-gradle-build-validation
102
95
${ARG_ARGS:+"-a" "$ARG_ARGS"} \
103
96
${ARG_GE_URL:+"-s" "$ARG_GE_URL"} \
104
97
${ARG_GE_ENABLE:+"-e"} \
105
- ${ARG_DEBUG :+"--debug"}
98
+ ${RUNNER_DEBUG :+"--debug"}
106
99
107
100
# Set the Build Scan urls as outputs
108
101
RECEIPT_FILE=".data/01-validate-incremental-building/latest/exp1-*.receipt"
Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ inputs:
32
32
failIfNotFullyCacheable :
33
33
description : " Terminates with exit code 3 if the build is not fully cacheable"
34
34
required : false
35
- debug :
36
- description : " Enable debug logging for this experiment of the build validation scripts"
37
- required : false
38
35
outputs :
39
36
buildScanFirstBuild :
40
37
description : " First build scan url"
90
87
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
91
88
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
92
89
fi
93
- ARG_DEBUG=""
94
- if [ "${{ inputs.debug }}" == "true" ]; then
95
- ARG_DEBUG="${{ inputs.debug }}"
96
- fi
97
90
98
91
# Navigate into the folder containing the validation scripts
99
92
cd gradle-enterprise-gradle-build-validation
@@ -110,7 +103,7 @@ runs:
110
103
${ARG_GE_URL:+"-s" "$ARG_GE_URL"} \
111
104
${ARG_GE_ENABLE:+"-e"} \
112
105
${ARG_FAIL_IF_NOT_FULLY_CACHEABLE:+"-f"} \
113
- ${ARG_DEBUG :+"--debug"}
106
+ ${RUNNER_DEBUG :+"--debug"}
114
107
115
108
# Set the Build Scan urls as outputs
116
109
RECEIPT_FILE=".data/02-validate-local-build-caching-same-location/latest/exp2-*.receipt"
Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ inputs:
32
32
failIfNotFullyCacheable :
33
33
description : " Terminates with exit code 3 if the build is not fully cacheable"
34
34
required : false
35
- debug :
36
- description : " Enable debug logging for this experiment of the build validation scripts"
37
- required : false
38
35
outputs :
39
36
buildScanFirstBuild :
40
37
description : " First build scan url"
90
87
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
91
88
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
92
89
fi
93
- ARG_DEBUG=""
94
- if [ "${{ inputs.debug }}" == "true" ]; then
95
- ARG_DEBUG="${{ inputs.debug }}"
96
- fi
97
90
98
91
# Navigate into the folder containing the validation scripts
99
92
cd gradle-enterprise-gradle-build-validation
@@ -110,7 +103,7 @@ runs:
110
103
${ARG_GE_URL:+"-s" "$ARG_GE_URL"} \
111
104
${ARG_GE_ENABLE:+"-e"} \
112
105
${ARG_FAIL_IF_NOT_FULLY_CACHEABLE:+"-f"} \
113
- ${ARG_DEBUG :+"--debug"}
106
+ ${RUNNER_DEBUG :+"--debug"}
114
107
115
108
# Set the Build Scan urls as outputs
116
109
RECEIPT_FILE=".data/03-validate-local-build-caching-different-locations/latest/exp3-*.receipt"
Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ inputs:
32
32
failIfNotFullyCacheable :
33
33
description : " Terminates with exit code 3 if the build is not fully cacheable"
34
34
required : false
35
- debug :
36
- description : " Enable debug logging for this experiment of the build validation scripts"
37
- required : false
38
35
outputs :
39
36
buildScanFirstBuild :
40
37
description : " First build scan url"
90
87
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
91
88
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
92
89
fi
93
- ARG_DEBUG=""
94
- if [ "${{ inputs.debug }}" == "true" ]; then
95
- ARG_DEBUG="${{ inputs.debug }}"
96
- fi
97
90
98
91
# Navigate into the folder containing the validation scripts
99
92
cd gradle-enterprise-maven-build-validation
@@ -110,7 +103,7 @@ runs:
110
103
${ARG_GE_URL:+"-s" "$ARG_GE_URL"} \
111
104
${ARG_GE_ENABLE:+"-e"} \
112
105
${ARG_FAIL_IF_NOT_FULLY_CACHEABLE:+"-f"} \
113
- ${ARG_DEBUG :+"--debug"}
106
+ ${RUNNER_DEBUG :+"--debug"}
114
107
115
108
# Set the Build Scan urls as outputs
116
109
RECEIPT_FILE=".data/01-validate-local-build-caching-same-location/latest/exp1-*.receipt"
Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ inputs:
32
32
failIfNotFullyCacheable :
33
33
description : " Terminates with exit code 3 if the build is not fully cacheable"
34
34
required : false
35
- debug :
36
- description : " Enable debug logging for this experiment of the build validation scripts"
37
- required : false
38
35
outputs :
39
36
buildScanFirstBuild :
40
37
description : " First build scan url"
90
87
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
91
88
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
92
89
fi
93
- ARG_DEBUG=""
94
- if [ "${{ inputs.debug }}" == "true" ]; then
95
- ARG_DEBUG="${{ inputs.debug }}"
96
- fi
97
90
98
91
# Navigate into the folder containing the validation scripts
99
92
cd gradle-enterprise-maven-build-validation
@@ -110,7 +103,7 @@ runs:
110
103
${ARG_GE_URL:+"-s" "$ARG_GE_URL"} \
111
104
${ARG_GE_ENABLE:+"-e"} \
112
105
${ARG_FAIL_IF_NOT_FULLY_CACHEABLE:+"-f"} \
113
- ${ARG_DEBUG :+"--debug"}
106
+ ${RUNNER_DEBUG :+"--debug"}
114
107
115
108
# Set the Build Scan urls as outputs
116
109
RECEIPT_FILE=".data/02-validate-local-build-caching-different-locations/latest/exp2-*.receipt"
You can’t perform that action at this time.
0 commit comments