@@ -119,7 +119,11 @@ jobs:
119
119
run : |
120
120
mkdir C:\workspace\flutter
121
121
cd C:\workspace\flutter
122
- git config --global core.autocrlf true
122
+ git config --global core.autocrlf false
123
+ git config --global core.filemode false
124
+ git config --global core.fscache true
125
+ git config --global core.preloadindex true
126
+ git config --global depot-tools.allowGlobalGitConfig true
123
127
git init --quiet
124
128
git remote add origin https://github.com/${{ github.repository }}
125
129
git fetch --depth 1 origin ${{ github.sha }}
@@ -158,8 +162,7 @@ jobs:
158
162
--runtime-mode=${{ matrix.mode }} `
159
163
--no-goma `
160
164
--target-dir build
161
- # TODO(jsuya) : https://github.com/flutter/flutter/issues/163487
162
- C:\workspace\flutter\engine\src\flutter/third_party/ninja/ninja -C .\out\build gen_snapshot
165
+ ninja -C .\out\build gen_snapshot
163
166
164
167
- uses : actions/upload-artifact@v4
165
168
with :
@@ -216,8 +219,7 @@ jobs:
216
219
--disable-desktop-embeddings \
217
220
--target-dir build
218
221
cd engine/src
219
- # TODO(jsuya) : https://github.com/flutter/flutter/issues/163487
220
- flutter/third_party/ninja/ninja -C out/build clang_arm64/gen_snapshot
222
+ ninja -C out/build clang_arm64/gen_snapshot
221
223
222
224
- uses : actions/upload-artifact@v4
223
225
with :
@@ -274,8 +276,7 @@ jobs:
274
276
--disable-desktop-embeddings \
275
277
--target-dir build
276
278
cd engine/src
277
- # TODO(jsuya) : https://github.com/flutter/flutter/issues/163487
278
- flutter/third_party/ninja/ninja -C out/build clang_x64/gen_snapshot
279
+ ninja -C out/build clang_x64/gen_snapshot
279
280
280
281
- uses : actions/upload-artifact@v4
281
282
with :
0 commit comments