From 80fbd11c7884d146627ed1b6c0541e529906c416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristina=20Isabel=20Ca=C3=B1izales?= Date: Fri, 18 Oct 2024 11:01:43 -0300 Subject: [PATCH] chore: param repo --- .github/workflows/coreE2EredHat.yml | 2 ++ .github/workflows/runE2ETest.yml | 17 +++++++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coreE2EredHat.yml b/.github/workflows/coreE2EredHat.yml index e92c9a7b4a..093d21696d 100644 --- a/.github/workflows/coreE2EredHat.yml +++ b/.github/workflows/coreE2EredHat.yml @@ -112,6 +112,7 @@ jobs: secrets: inherit with: automationBranch: ${{ inputs.automationBranch }} + automationRepo: 'salesforcedx-vscode-automation-tests-redhat' testToRun: 'anInitialSuite.e2e.js' vscodeVersion: ${{ inputs.vscodeVersion }} runId: ${{ inputs.runId }} @@ -122,6 +123,7 @@ jobs: secrets: inherit with: automationBranch: ${{ inputs.automationBranch }} + automationRepo: 'salesforcedx-vscode-automation-tests-redhat' testToRun: 'createProject.e2e.js' vscodeVersion: ${{ inputs.vscodeVersion }} runId: ${{ inputs.runId }} diff --git a/.github/workflows/runE2ETest.yml b/.github/workflows/runE2ETest.yml index 2dbcf3bd3d..5fc7b39d86 100644 --- a/.github/workflows/runE2ETest.yml +++ b/.github/workflows/runE2ETest.yml @@ -7,6 +7,11 @@ on: required: false default: 'main' type: string + automationRepo: + description: 'Set the repo to use for automation tests' + required: false + default: 'salesforcedx-vscode-automation-tests' + type: string testToRun: description: 'Run this E2E test' required: false @@ -60,7 +65,7 @@ jobs: cache: npm cache-dependency-path: | salesforcedx-vscode/package-lock.json - salesforcedx-vscode-automation-tests-redhat/package-lock.json + ${{ inputs.automationRepo }}/package-lock.json - name: Setup java uses: actions/setup-java@v4 with: @@ -69,13 +74,13 @@ jobs: - name: Clone automation tests uses: actions/checkout@v4 with: - repository: forcedotcom/salesforcedx-vscode-automation-tests-redhat - path: salesforcedx-vscode-automation-tests-redhat + repository: forcedotcom/${{ inputs.automationRepo }} + path: ${{ inputs.automationRepo }} ref: ${{ inputs.automationBranch }} - name: Install Test Dependencies run: | npm install - working-directory: salesforcedx-vscode-automation-tests-redhat + working-directory: ${{ inputs.automationRepo }} - name: Install the Salesforce CLI run: npm install -g @salesforce/cli - name: Verify CLI @@ -102,7 +107,7 @@ jobs: with: run: | npm run automation-tests - working-directory: salesforcedx-vscode-automation-tests-redhat + working-directory: ${{ inputs.automationRepo }} env: VSCODE_VERSION: ${{ matrix.vscodeVersion }} SPEC_FILES: ${{ inputs.testToRun }} @@ -113,4 +118,4 @@ jobs: if: failure() with: name: screenshots-${{ inputs.testToRun }}-${{ matrix.os }} - path: ./salesforcedx-vscode-automation-tests-redhat/screenshots + path: ./${{ inputs.automationRepo }}/screenshots