ci: Fix /perf-test command (#21457

Add   build-docker-image step to perf-test command
This commit is contained in:
Satish Gandham 2023-03-16 08:39:37 +05:30 committed by GitHub
parent 25aa5dcb52
commit fcc4e54dd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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