Remove unused workflow input parameter (#13312)
This commit is contained in:
parent
bf9e24df7c
commit
e8f67d8bce
|
@ -310,7 +310,6 @@ jobs:
|
|||
-Porg.gradle.java.installations.paths=${{ steps.setup-test-java.outputs.path }}
|
||||
-Porg.gradle.java.installations.auto-download=false
|
||||
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
|
||||
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
|
||||
|
||||
- name: Build scan
|
||||
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
|
||||
|
|
|
@ -9,9 +9,6 @@ on:
|
|||
no-build-cache:
|
||||
type: boolean
|
||||
required: false
|
||||
max-test-retries:
|
||||
type: string
|
||||
required: false
|
||||
secrets:
|
||||
FLAKY_TEST_REPORTER_ACCESS_KEY:
|
||||
required: false
|
||||
|
@ -82,7 +79,6 @@ jobs:
|
|||
${{ env.test-tasks }}
|
||||
-PtestIndy=true
|
||||
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
|
||||
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
|
||||
|
||||
- name: Build scan
|
||||
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
|
||||
|
|
|
@ -9,9 +9,6 @@ on:
|
|||
no-build-cache:
|
||||
type: boolean
|
||||
required: false
|
||||
max-test-retries:
|
||||
type: string
|
||||
required: false
|
||||
secrets:
|
||||
FLAKY_TEST_REPORTER_ACCESS_KEY:
|
||||
required: false
|
||||
|
@ -80,7 +77,6 @@ jobs:
|
|||
${{ env.test-tasks }}
|
||||
-PtestLatestDeps=true
|
||||
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
|
||||
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
|
||||
|
||||
- name: Build scan
|
||||
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
|
||||
|
|
Loading…
Reference in New Issue