File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,14 @@ jobs:
34
34
runs-on : ${{ matrix.os }}
35
35
36
36
steps :
37
+ - name : Correct git autocrlf
38
+ run : git config --global core.autocrlf false
39
+
37
40
- uses : actions/checkout@v4
38
41
- uses : ./.github/actions/prepare-for-build
39
42
40
43
- name : Run gradle check (without tests)
41
- run : ./gradlew check -x test -Ptask.times=true --max-workers 2
44
+ run : ./gradlew check -x test " -Ptask.times=true" --max-workers 2
42
45
43
46
44
47
# This runs all tests without any other validation checks.
@@ -49,14 +52,16 @@ jobs:
49
52
strategy :
50
53
matrix :
51
54
# Operating systems to run on.
52
- # windows-latest: fairly slow to build and results in odd errors (see LUCENE-10167)
53
- # macos-latest: a tad slower than ubuntu and pretty much the same (?) so leaving out.
54
- os : [ ubuntu-latest ]
55
+ os : [ ubuntu-latest, windows-latest, macos-latest ]
55
56
java : [ '21' ]
56
57
57
58
runs-on : ${{ matrix.os }}
58
59
59
60
steps :
61
+ - name : Correct git autocrlf on Windows
62
+ if : startsWith(matrix.os, 'windows')
63
+ run : git config --global core.autocrlf false
64
+
60
65
- uses : actions/checkout@v4
61
66
- uses : ./.github/actions/prepare-for-build
62
67
You can’t perform that action at this time.
0 commit comments