Skip to content

Commit

Permalink
hey
Browse files Browse the repository at this point in the history
  • Loading branch information
zero88 committed Oct 3, 2022
1 parent 7091cef commit 6e11c05
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/jooqx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,15 @@ jobs:
- name: Run test
shell: bash
run: |
count=$(./gradlew --stacktrace \
match=$(./gradlew --stacktrace \
:integtest:${{ steps.db_profile.outputs.project }}:test \
:integtest:${{ steps.db_profile.outputs.project }}:jacocoTestReport \
-Pprofile=${{ env.PROFILE }} \
-PdbImage=${{ steps.db_profile.outputs.dbImage }} \
-PsemanticVersion=${{ needs.context.outputs.semanticVersion }} \
| tee 1>&2 | grep -c 'There were failing tests' ||:)
(( count > 0 )) && exit 1 || echo
| tee 1>&2 | grep 'FAILURE:') ||:
echo $match
[[ ! -z $match ]] && exit 1 || echo
# - name: SonarQube
# shell: bash
Expand Down

0 comments on commit 6e11c05

Please sign in to comment.