From 4afb45f5b8db311b199ab3ca5a69af8446f63021 Mon Sep 17 00:00:00 2001 From: Stevie Strickland Date: Mon, 17 Dec 2018 18:09:07 +0000 Subject: [PATCH] Change default target to "create_sdk". Currently the "all" target can lead to build errors and is unsupported, so fall back to a supported target instead. Change-Id: I925a785e4b81ab92e99c3842cb81c338c5a1d990 Reviewed-on: https://dart-review.googlesource.com/c/87403 Auto-Submit: Stevie Strickland Reviewed-by: Zach Anderson Commit-Queue: Stevie Strickland --- tools/build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/build.py b/tools/build.py index 9c72266dd6f..a4ccf5e45a6 100755 --- a/tools/build.py +++ b/tools/build.py @@ -301,9 +301,10 @@ def Main(): if not ProcessOptions(options, args): parser.print_help() return 1 - # Determine which targets to build. By default we build the "all" target. + # Determine which targets to build. The default is the "create_sdk" target, + # as the "all" target is unsupported and not built on any of the bots. if len(args) == 0: - targets = ['all'] + targets = ['create_sdk'] else: targets = args