Skip to content

Commit 16ace09

Browse files
ci: normalize windows configure inputs
1 parent 88e343b commit 16ace09

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/extensions-test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ jobs:
5757

5858
steps:
5959
- uses: hecrj/setup-rust-action@v2
60-
- name: set git to use LF on windows
61-
if: matrix.os == 'windows-latest'
62-
run: |
63-
git config --global core.autocrlf false
64-
git config --global core.eol lf
6560
- name: Checkout repository
6661
uses: actions/checkout@v3
6762
- name: Set up cargo cache
@@ -111,6 +106,11 @@ jobs:
111106

112107
steps:
113108
- uses: hecrj/setup-rust-action@v2
109+
- name: set git to use LF on windows
110+
if: matrix.os == 'windows-latest'
111+
run: |
112+
git config --global core.autocrlf false
113+
git config --global core.eol lf
114114
- name: Checkout repository
115115
uses: actions/checkout@v3
116116
- name: Set up cargo cache
@@ -165,6 +165,7 @@ jobs:
165165
shell: msys2 {0}
166166
working-directory: libsql-sqlite3
167167
run: |
168+
sed -i 's/\r$//' configure VERSION
168169
./configure
169170
make libsql
170171

0 commit comments

Comments
 (0)