Skip to content

Commit

Permalink
Add performance test to nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
mike1729 committed Jan 21, 2025
1 parent 1e8e8d1 commit 7a05bea
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/nightly-normal-session-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,31 @@ jobs:
artifact-aleph-e2e-client-image: ${{ needs.build-aleph-e2e-client-image.outputs.artifact-name-image }}
timeout-minutes: 35

run-e2e-all-validators-have-ideal-performance:
needs:
- build-synthetic-node
- build-aleph-e2e-client-image
- build-chain-bootstrapper-production
name: All validators have ideal abft performance
runs-on: ubuntu-20.04
steps:
- name: Checkout source code
uses: actions/checkout@v4

- name: Run e2e test
uses: ./.github/actions/run-e2e-test
with:
test-case: all_validators_have_ideal_performance
# yamllint disable-line rule:line-length
artifact-aleph-node-image: ${{ needs.build-synthetic-node.outputs.artifact-name-image }}
aleph-node-image-tag: aleph-node:syntheticnet
compose-file: docker/docker-compose.synthetic-network.yml
# yamllint disable-line rule:line-length
artifact-chain-bootstrapper-image: ${{ needs.build-chain-bootstrapper-production.outputs.artifact-name-image }}
# yamllint disable-line rule:line-length
artifact-aleph-e2e-client-image: ${{ needs.build-aleph-e2e-client-image.outputs.artifact-name-image }}
timeout-minutes: 35

check-nightly-pipeline-completion:
needs: [run-e2e-high-out-latency,
run-e2e-sync-test-one_node_catching_up_and_then_becoming_necessary_for_consensus,
Expand All @@ -381,7 +406,8 @@ jobs:
run-e2e-sync-test-into_two_groups_one_with_quorum,
run-force-reorg-test,
run-major-sync-test,
run-e2e-no-quorum-without-high-out-latency]
run-e2e-no-quorum-without-high-out-latency,
run-e2e-all-validators-have-ideal-performance]
name: Check nightly test suite completion
if: ${{ !cancelled() }}
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 7a05bea

Please sign in to comment.