Skip to content

Commit

Permalink
GitHub Actions: Using LF for Git checkout.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rinrab committed Sep 18, 2024
1 parent 8d7182c commit f6b6fbc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ jobs:
libsqlite3-dev
ninja-build
- name: Use LF for Git checkout
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4

- name: gen-make
Expand Down

0 comments on commit f6b6fbc

Please sign in to comment.