Skip to content

Commit

Permalink
Disable Fuchsia Debug & Release presubmits and only attempt the Profi…
Browse files Browse the repository at this point in the history
…le unopt variant. (flutter#9856)

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.
  • Loading branch information
chinmaygarde authored Jul 16, 2019
1 parent 6e1a3e8 commit 3233f94
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3233f94

Please sign in to comment.