Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
chi3316 committed Sep 27, 2024
1 parent 8360a04 commit 0eb4ae5
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/pr-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,30 +126,30 @@ jobs:
tag: ${{ matrix.version }}
benchmark-test:
if: ${{ success() }}
runs-on: ubuntu-latest
name: Performance benchmark test
needs: [ list-version, deploy ]
timeout-minutes: 60
steps:
- uses: chi3316/rocketmq-test-tool/benchmark-runner@89d3abde74cac994f9a9b3c45bf6ed3096cdc7ea
name: Performance benchmark
with:
action: "performance-benchmark"
ask-config: "${{ env.SECRET }}"
job-id: 1
test-time: "300"
- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
with:
name: benchmark-report
path: benchmark/
if: ${{ success() }}
runs-on: ubuntu-latest
name: Performance benchmark test
needs: [ list-version, deploy ]
timeout-minutes: 60
steps:
- uses: chi3316/rocketmq-test-tool/benchmark-runner@89d3abde74cac994f9a9b3c45bf6ed3096cdc7ea
name: Performance benchmark
with:
action: "performance-benchmark"
ask-config: "${{ env.SECRET }}"
job-id: 1
test-time: "300"
- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
with:
name: benchmark-report
path: benchmark/

clean:
if: always()
name: Clean
needs: [list-version,benchmark-test]
needs: [list-version, benchmark-test]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down

0 comments on commit 0eb4ae5

Please sign in to comment.