Skip to content

Commit

Permalink
chore: change nightly java8 job
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeWang1127 committed May 24, 2024
1 parent 2db0370 commit 75b74cc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 75b74cc

Please sign in to comment.