Skip to content

Commit e7d5cfd

Browse files
committed
Fix ninja path issue
1 parent 48f95e5 commit e7d5cfd

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ jobs:
166166
--runtime-mode=${{ matrix.mode }} `
167167
--no-goma `
168168
--target-dir build
169-
# TODO(jsuya) : https://github.com/flutter/flutter/issues/163487
170-
C:\workspace\flutter\engine\src\flutter/third_party/ninja/ninja -C .\out\build gen_snapshot
169+
ninja -C .\out\build gen_snapshot
171170
172171
- uses: actions/upload-artifact@v4
173172
with:
@@ -224,8 +223,7 @@ jobs:
224223
--disable-desktop-embeddings \
225224
--target-dir build
226225
cd engine/src
227-
# TODO(jsuya) : https://github.com/flutter/flutter/issues/163487
228-
flutter/third_party/ninja/ninja -C out/build clang_arm64/gen_snapshot
226+
ninja -C out/build clang_arm64/gen_snapshot
229227
230228
- uses: actions/upload-artifact@v4
231229
with:
@@ -282,8 +280,7 @@ jobs:
282280
--disable-desktop-embeddings \
283281
--target-dir build
284282
cd engine/src
285-
# TODO(jsuya) : https://github.com/flutter/flutter/issues/163487
286-
flutter/third_party/ninja/ninja -C out/build clang_x64/gen_snapshot
283+
ninja -C out/build clang_x64/gen_snapshot
287284
288285
- uses: actions/upload-artifact@v4
289286
with:

0 commit comments

Comments
 (0)