Skip to content

Commit f6b6fbc

Browse files
committed
GitHub Actions: Using LF for Git checkout.
Using of CRLF ends-of-line causes some problems with binary-files, stored in the repository. This is not the best resolution, because the information about them will be lost. * .github/workflows/cmake.yml (): Add step that does some modifications in Git config to change the end-of-line style. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1920770 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8d7182c commit f6b6fbc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/cmake.yml

+5
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ jobs:
8989
libsqlite3-dev
9090
ninja-build
9191
92+
- name: Use LF for Git checkout
93+
run: |
94+
git config --global core.autocrlf false
95+
git config --global core.eol lf
96+
9297
- uses: actions/checkout@v4
9398

9499
- name: gen-make

0 commit comments

Comments
 (0)