-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flutter runner test build as part of CI
- Loading branch information
Kaushik Iska
committed
Sep 4, 2019
1 parent
d426844
commit 9cecc3d
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
set -ex | ||
|
||
PATH="$HOME/depot_tools:$PATH" | ||
cd .. | ||
|
||
# Build the flutter runner tests far directory | ||
flutter/tools/gn --fuchsia --no-lto --runtime-mode debug | ||
ninja -C out/fuchsia_debug_x64 flutter/shell/platform/fuchsia/flutter:flutter_runner_tests | ||
|
||
# Generate the far package | ||
flutter/tools/fuchsia/gen_package.py\ | ||
--pm-bin $PWD/fuchsia/sdk/linux/tools/pm\ | ||
--package-dir $PWD/out/fuchsia_debug_x64/flutter_runner_tests_far\ | ||
--signing-key $PWD/flutter/tools/fuchsia/development.key\ | ||
--far-name flutter_runner_tests | ||
|