Skip to content

Commit

Permalink
Speed up failure reporting (#11030)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Mar 17, 2024
1 parent d303aff commit 197f730
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,15 @@ jobs:
run: xvfb-run --auto-servernum ./gradlew check -x checkstyleJmh -x checkstyleMain -x checkstyleTest -x modernizer
env:
CI: "true"
- name: Prepare format failed test results
if: failure()
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: xml-twig-tools xsltproc
version: 1.0
- name: Format failed test results
if: failure()
run: |
sudo apt-get install -qq -y xml-twig-tools xsltproc
scripts/after-failure.sh
run: scripts/after-failure.sh
databasetests:
name: Database tests
runs-on: ubuntu-latest
Expand Down

0 comments on commit 197f730

Please sign in to comment.