Skip to content

Commit a6c5e80

Browse files
committed
fix
1 parent 0ef57ae commit a6c5e80

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
-Porg.gradle.java.installations.paths=${{ steps.setup-test-java.outputs.path }}
271271
-Porg.gradle.java.installations.auto-download=false
272272
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
273-
${{ inputs.max-test-retries && ' -PmaxTestRetries=${inputs.max-test-retries}' || '' }}
273+
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
274274
275275
- name: Build scan
276276
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}

.github/workflows/reusable-test-indy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
${{ env.test-tasks }}
8282
-PtestIndy=true
8383
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
84-
${{ inputs.max-test-retries && ' -PmaxTestRetries=${inputs.max-test-retries}' || '' }}
84+
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
8585
8686
- name: Build scan
8787
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}

.github/workflows/reusable-test-latest-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
${{ env.test-tasks }}
8080
-PtestLatestDeps=true
8181
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
82-
${{ inputs.max-test-retries && ' -PmaxTestRetries=${inputs.max-test-retries}' || '' }}
82+
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
8383
8484
- name: Build scan
8585
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}

0 commit comments

Comments
 (0)