File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 34
34
stage : test
35
35
tags : [ docker, linux, x64 ]
36
36
variables :
37
- # CentOS 7 defaults to ASCII, use a UTF-8 compatible locale so UTF-8 tests that interact with file system work.
38
- LC_ALL : " en_US.UTF-8"
37
+ # Image defaults to POSIX (ASCII), set a compatible locale so UTF-8 tests that interact with the file system work.
38
+ # Check with 'locale -a' for available locales.
39
+ LC_ALL : " C.UTF-8"
39
40
before_script :
40
41
# Print Gradle and JVM version info
41
42
- ./gradlew -version
@@ -83,8 +84,9 @@ test-macos:
83
84
extends : .test-template
84
85
tags : [ docker, linux, x64 ]
85
86
variables :
86
- # CentOS 7 defaults to ASCII, use a UTF-8 compatible locale so UTF-8 tests that interact with file system work.
87
- LC_ALL : " en_US.UTF-8"
87
+ # Image defaults to POSIX (ASCII), set a compatible locale so UTF-8 tests that interact with the file system work.
88
+ # Check with 'locale -a' for available locales.
89
+ LC_ALL : " C.UTF-8"
88
90
script :
89
91
# Note: do not run check task as it includes SpotBugs.
90
92
- ./ci/test-with-asan.sh $GITLAB_REPO_ARGS $VERSION_ARGS clean :tests:objectbox-java-test:test
You can’t perform that action at this time.
0 commit comments