Add test_rm_degraded to CI

This commit is contained in:
Vitaliy Filippov
2024-12-27 18:31:58 +03:00
parent ba9aabf187
commit 044e621b62
2 changed files with 20 additions and 0 deletions
+18
View File
@@ -414,6 +414,24 @@ jobs:
echo "" echo ""
done done
test_rm_degraded:
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_rm_degraded.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_chain: test_snapshot_chain:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
+2
View File
@@ -36,6 +36,8 @@ SCHEME=ec ./test_snapshot.sh
./test_rm.sh ./test_rm.sh
./test_rm_degraded.sh
./test_snapshot_chain.sh ./test_snapshot_chain.sh
SCHEME=ec ./test_snapshot_chain.sh SCHEME=ec ./test_snapshot_chain.sh