Add test_level_placement and fix it with the 2.2.0+ PG "folding" system

This commit is contained in:
Vitaliy Filippov
2025-12-15 14:19:30 +03:00
parent b78f526696
commit d35727dbb7
5 changed files with 61 additions and 2 deletions
+18
View File
@@ -414,6 +414,24 @@ jobs:
echo ""
done
test_level_placement:
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_level_placement.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_snapshot:
runs-on: ubuntu-latest
needs: build