Skip to content

Commit

Permalink
POM sureplugin force locale=EN-AU
Browse files Browse the repository at this point in the history
- Hopefully fixes failing surefire tests due to strange locale
  • Loading branch information
mP1 committed May 2, 2024
1 parent f3f36d9 commit b91b8e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: mvn dependency:resolve

- name: Maven install
run: mvn install -Dmaven.javadoc.skip=true -B -V -e > maven-install-output.txt
run: mvn install -Dmaven.javadoc.skip=true -B -V -e -DargLine="-Duser.language=EN -Duser.region=AU" > maven-install-output.txt

- name: Print logs
if: ${{ always() }}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
<includes>
<include>**/Test*.java</include>
</includes>
<argLine>-Xmx2G</argLine>
<argLine>-Xmx2G -Duser.language=EN -Duser.region=AU</argLine>
<parallel>classes</parallel>
<threadCount>1</threadCount>
<!-- remove slow SuiteHTMLReporter -->
Expand Down

0 comments on commit b91b8e0

Please sign in to comment.