From 0625b4a18e575f94c01a67b9dee2ef9a98ac886c Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Tue, 16 Jul 2019 14:39:45 -0700 Subject: [PATCH] Disable Fuchsia Debug & Release presubmits and only attempt the Profile unopt variant. The build sources are identical. Also, the previous debug variant was unnecessarily building the Full Dart SDK. The extra builds were causing increased queue times on other jobs. --- .cirrus.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 50125a717302f..afb49378b5bf9 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -139,18 +139,8 @@ task: gclient sync matrix: - - name: build_fuchsia_debug - compile_host_script: | - cd $ENGINE_PATH/src - ./flutter/tools/gn --unoptimized --fuchsia --full-dart-sdk - ninja -C out/fuchsia_debug_unopt - name: build_fuchsia_profile compile_host_script: | cd $ENGINE_PATH/src - ./flutter/tools/gn --runtime-mode profile --fuchsia --no-lto - ninja -C out/fuchsia_profile - - name: build_fuchsia_release - compile_host_script: | - cd $ENGINE_PATH/src - ./flutter/tools/gn --runtime-mode release --fuchsia --no-lto - ninja -C out/fuchsia_release + ./flutter/tools/gn --runtime-mode profile --fuchsia --no-lto --unopt + ninja -C out/fuchsia_profile_unopt