Database configuration tests

Closes #9293
This commit is contained in:
Pedro Igor
2021-12-21 13:45:16 -03:00
parent d39eb95705
commit 981cda5bfd
15 changed files with 435 additions and 9 deletions

View File

@@ -425,6 +425,13 @@ jobs:
find . -path '*/target/surefire-reports/*.xml' | zip -q reports-quarkus-tests.zip -@
exit $TEST_RESULT
- name: Run Quarkus Storage Tests
run: |
mvn clean install -nsu -B -f quarkus/tests/pom.xml -Ptest-database -Dtest=PostgreSQLStartDatabaseTest | misc/log/trimmer.sh
TEST_RESULT=${PIPESTATUS[0]}
find . -path '*/target/surefire-reports/*.xml' | zip -q reports-quarkus-tests.zip -@
exit $TEST_RESULT
- name: Quarkus test reports
uses: actions/upload-artifact@v2
if: failure()