Add kv-stress test to CI

This commit is contained in:
Vitaliy Filippov
2025-11-29 16:48:38 +03:00
parent 477b54a0d8
commit 0f330b10f1
3 changed files with 29 additions and 0 deletions
+18
View File
@@ -540,6 +540,24 @@ jobs:
echo ""
done
test_kv_stress:
runs-on: ubuntu-latest
needs: build
container: ${{env.TEST_IMAGE}}:${{github.sha}}
steps:
- name: Run test
id: test
timeout-minutes: 3
run: /root/vitastor/tests/test_kv_stress.sh
- name: Print logs
if: always() && steps.test.outcome == 'failure'
run: |
for i in /root/vitastor/testdata/*.log /root/vitastor/testdata/*.txt; do
echo "-------- $i --------"
cat $i
echo ""
done
test_splitbrain:
runs-on: ubuntu-latest
needs: build