diff --git a/.github/workflows/perf-test-v2.yml b/.github/workflows/perf-test-v2.yml index dc5155b511..dea2deac57 100644 --- a/.github/workflows/perf-test-v2.yml +++ b/.github/workflows/perf-test-v2.yml @@ -29,6 +29,11 @@ jobs: run: working-directory: app/client shell: bash + + strategy: + fail-fast: false + matrix: + job: [0, 1] # Service containers to run with this job. Required for running tests services: @@ -222,6 +227,7 @@ jobs: POSTGRES_PASSWORD: postgres NODE_TLS_REJECT_UNAUTHORIZED: "0" MACHINE: ubuntu-latest-4-cores + JOB: ${{ matrix.job }} run: ./start-test.sh diff --git a/.github/workflows/perf-tests-command.yml b/.github/workflows/perf-tests-command.yml index f1a67967a1..2114a5b1f9 100644 --- a/.github/workflows/perf-tests-command.yml +++ b/.github/workflows/perf-tests-command.yml @@ -60,13 +60,3 @@ jobs: secrets: inherit with: pr: ${{ github.event.client_payload.pull_request.number }} - - perf-test-v2: - needs: [ build-docker-image ] - # Only run if the build step is successful - if: success() - name: perf-test-v2 - uses: ./.github/workflows/perf-test-v2.yml - secrets: inherit - with: - pr: ${{ github.event.client_payload.pull_request.number }}