File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ stages:
31
31
32
32
test :
33
33
stage : test
34
- tags : [ docker, x64 ]
34
+ tags : [ docker, linux, x64 ]
35
+ variables :
36
+ # CentOS 7 defaults to ASCII, use a UTF-8 compatible locale so UTF-8 tests that interact with file system work.
37
+ LC_ALL : " en_US.UTF-8"
35
38
before_script :
36
39
# Print Gradle and JVM version info
37
40
- ./gradlew -version
@@ -75,7 +78,10 @@ test-macos:
75
78
# Address sanitizer is only available on Linux runners (see script).
76
79
.test-asan-template :
77
80
extends : .test-template
78
- tags : [ docker, x64 ]
81
+ tags : [ docker, linux, x64 ]
82
+ variables :
83
+ # CentOS 7 defaults to ASCII, use a UTF-8 compatible locale so UTF-8 tests that interact with file system work.
84
+ LC_ALL : " en_US.UTF-8"
79
85
script :
80
86
# Note: do not run check task as it includes SpotBugs.
81
87
- ./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