From 75b74cc871f95d4d13abcc0e1e20365e1e6c25e9 Mon Sep 17 00:00:00 2001 From: Joe Wang Date: Fri, 24 May 2024 11:18:55 -0400 Subject: [PATCH] chore: change nightly java8 job --- .github/workflows/nightly.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 12e239ae8c..16c845299d 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -58,7 +58,13 @@ jobs: - run: mvn -version - name: Test with Java 8 # Direct goal invocation ("surefire:test") prevents recompiling tests - run: mvn surefire:test --errors --batch-mode --no-transfer-progress -T 1C + run: | + mvn surefire:test \ + --errors \ + --batch-mode \ + --no-transfer-progress \ + -T 1C \ + -DargLine="-Djava.util.logging.SimpleFormatter.format='%1$tY %1$tl:%1$tM:%1$tS.%1$tL %2$s %4$s: %5$s%6$s%n'" - name: Create issue if previous step fails if: ${{ failure() }} env: