From c14f6b5149cffc7423a702a4c0e63ace3d87239d Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Sat, 15 Feb 2025 07:25:57 -0800 Subject: [PATCH] Remove unused workflow input parameter --- .github/workflows/build-common.yml | 1 - .github/workflows/reusable-test-indy.yml | 4 ---- .github/workflows/reusable-test-latest-deps.yml | 4 ---- 3 files changed, 9 deletions(-) diff --git a/.github/workflows/build-common.yml b/.github/workflows/build-common.yml index 26167f3ff062..42ced9ae090f 100644 --- a/.github/workflows/build-common.yml +++ b/.github/workflows/build-common.yml @@ -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') != '' }} diff --git a/.github/workflows/reusable-test-indy.yml b/.github/workflows/reusable-test-indy.yml index 935967594b62..d9fd61d89110 100644 --- a/.github/workflows/reusable-test-indy.yml +++ b/.github/workflows/reusable-test-indy.yml @@ -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') != '' }} diff --git a/.github/workflows/reusable-test-latest-deps.yml b/.github/workflows/reusable-test-latest-deps.yml index 0aed1f36f6c3..e76145a30de4 100644 --- a/.github/workflows/reusable-test-latest-deps.yml +++ b/.github/workflows/reusable-test-latest-deps.yml @@ -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') != '' }}