Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

donotmerge: investigate kube-burner timeouts #224

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions .github/workflows/performance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,19 @@ jobs:
TEST_INSPECTION_REPORTS_DIR: ${{ github.workspace }}/inspection-reports
TEST_METRICS_DIR: ${{ github.workspace }}/test/performance/results/head
TEST_RUN_NAME: head
TEST_DQLITE_TRACE_LEVEL: 1
TEST_RAFT_TRACE_LEVEL: 1
TEST_K8S_DQLITE_DEBUG: 1
run: |
cd test/performance
mkdir -p ./results/head
sg lxd -c 'tox -e performance'
set -ex
iteration=0
while [[ $iteration -lt 10 ]]; do
echo "iteration: $iteration"
sg lxd -c 'tox -e performance'
iteration=$(( $iteration + 1 ))
done
- name: Run Performance test for base code snap
env:
TEST_SNAP: ${{ github.workspace }}/base-code.snap
Expand All @@ -89,10 +98,19 @@ jobs:
TEST_INSPECTION_REPORTS_DIR: ${{ github.workspace }}/inspection-reports
TEST_METRICS_DIR: ${{ github.workspace }}/test/performance/results/base-code
TEST_RUN_NAME: base-code
TEST_DQLITE_TRACE_LEVEL: 1
TEST_RAFT_TRACE_LEVEL: 1
TEST_K8S_DQLITE_DEBUG: 1
run: |
cd test/performance
mkdir -p ./results/base-code
sg lxd -c 'tox -e performance'
set -ex
iteration=0
while [[ $iteration -lt 10 ]]; do
echo "iteration: $iteration"
sg lxd -c 'tox -e performance'
iteration=$(( $iteration + 1 ))
done
- name: Generate 3 node Graphs
if: always()
run: |
Expand Down
Loading