Add also a test for OSD tags

This commit is contained in:
Vitaliy Filippov
2024-04-09 16:57:59 +03:00
parent c29bfe12eb
commit 0fa7ecc03f
5 changed files with 77 additions and 15 deletions
+18
View File
@@ -766,6 +766,24 @@ jobs:
echo ""
done
test_osd_tags:
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_osd_tags.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_enospc:
runs-on: ubuntu-latest
needs: build