From fcc4e54dd87bb4fdd8a98dec0f9ac5174fa4fd88 Mon Sep 17 00:00:00 2001 From: Satish Gandham Date: Thu, 16 Mar 2023 08:39:37 +0530 Subject: [PATCH] ci: Fix /perf-test command (#21457 Add build-docker-image step to perf-test command --- .github/workflows/perf-tests-command.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/perf-tests-command.yml b/.github/workflows/perf-tests-command.yml index 46d9899b61..2114a5b1f9 100644 --- a/.github/workflows/perf-tests-command.yml +++ b/.github/workflows/perf-tests-command.yml @@ -41,8 +41,18 @@ jobs: with: pr: ${{ github.event.client_payload.pull_request.number }} + build-docker-image: + needs: [ client-build, server-build, rts-build ] + # Only run if the build step is successful + if: success() + name: build-docker-image + uses: ./.github/workflows/build-docker-image.yml + secrets: inherit + with: + pr: ${{ github.event.client_payload.pull_request.number }} + perf-test: - needs: [client-build, server-build, rts-build] + needs: [ build-docker-image ] # Only run if the build step is successful if: success() name: perf-test