diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index 4c5586acaf..d09445fabe 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -19,7 +19,6 @@ jobs: Workflow: `${{ github.workflow }}`. Commit: `${{ github.event.client_payload.slash_command.args.named.sha }}`. PR: ${{ github.event.client_payload.pull_request.number }}. - Perf tests will be available at server-build: name: server-build @@ -71,18 +70,8 @@ jobs: with: pr: ${{ github.event.client_payload.pull_request.number }} - perf-test: - needs: [build-docker-image] - # Only run if the build step is successful - if: success() - name: perf-test - uses: ./.github/workflows/perf-test.yml - secrets: inherit - with: - pr: ${{ github.event.client_payload.pull_request.number }} - ci-test-result: - needs: [ci-test, perf-test] + needs: [ci-test] # Only run if the ci-test with matrices step is successful if: always() runs-on: ubuntu-latest @@ -287,7 +276,7 @@ jobs: run: echo "$PAYLOAD_CONTEXT" - name: Check ci-test set status - if: needs.ci-test.result != 'success' || needs.perf-test.result != 'success' + if: needs.ci-test.result != 'success' run: exit 1 package: diff --git a/.github/workflows/integration-tests-with-documentdb-command.yml b/.github/workflows/integration-tests-with-documentdb-command.yml index f7af450fbe..a72b82fd28 100644 --- a/.github/workflows/integration-tests-with-documentdb-command.yml +++ b/.github/workflows/integration-tests-with-documentdb-command.yml @@ -19,7 +19,6 @@ jobs: Workflow: `${{ github.workflow }}`. Commit: `${{ github.event.client_payload.slash_command.args.named.sha }}`. PR: ${{ github.event.client_payload.pull_request.number }}. - Perf tests will be available at server-build: name: server-build @@ -71,18 +70,9 @@ jobs: with: pr: ${{ github.event.client_payload.pull_request.number }} - perf-test: - needs: [build-docker-image] - # Only run if the build step is successful - if: success() - name: perf-test-on-documentdb - uses: ./.github/workflows/perf-test-on-documentdb.yml - secrets: inherit - with: - pr: ${{ github.event.client_payload.pull_request.number }} ci-test-result: - needs: [ci-test, perf-test] + needs: [ci-test] # Only run if the ci-test with matrices step is successful if: always() runs-on: ubuntu-latest @@ -261,7 +251,7 @@ jobs: run: echo "$PAYLOAD_CONTEXT" - name: Check ci-test set status - if: needs.ci-test.result != 'success' || needs.perf-test.result != 'success' + if: needs.ci-test.result != 'success' run: exit 1 package: diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index 5ec3c3f43c..68c7b22110 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -45,16 +45,6 @@ jobs: with: pr: 0 - perf-test: - needs: [build-docker-image] - # Only run if the build step is successful - if: success() - name: perf-test - uses: ./.github/workflows/perf-test.yml - secrets: inherit - with: - pr: 0 - ci-test: needs: [build-docker-image] # Only run if the build step is successful