Skip to content

Commit

Permalink
Remove duplicated cirrus tasks. (flutter#17625)
Browse files Browse the repository at this point in the history
Some cirrus tasks are also running on LUCI. We are removing duplicated
tasks to free up cirrus capacity.

flutter/flutter#54412
  • Loading branch information
godofredoc authored Apr 10, 2020
1 parent 49f7cd0 commit 52afb7d
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,40 +212,3 @@ task:
cd $ENGINE_PATH/src
./flutter/tools/fuchsia/build_fuchsia_artifacts.py --engine-version HEAD --runtime-mode debug --no-lto --archs x64
cd $ENGINE_PATH/src/flutter
# WINDOWS
task:
gce_instance:
image_project: flutter-cirrus
image_name: flutter-engine-windows-server-2016
zone: us-central1-a
platform: windows
cpu: 32
memory: 32Gb
disk: 50
env:
# Cirrus is somehow not picking up the environment variables set in the VM image.
PATH: "c:/depot_tools;c:/MinGit/cmd;$PATH"
DEPOT_TOOLS_WIN_TOOLCHAIN: 0
GYP_MSVS_OVERRIDE_PATH: "c:/Program Files (x86)/Microsoft Visual Studio/2017/Community"
ENGINE_PATH: "c:/flutter/engine"
setup_script: |
REM robocopy can return 1 for successful copy; suppress its error code.
REM move somehow doesn't work as it complains that the file is being used by another process.
robocopy %CIRRUS_WORKING_DIR% %ENGINE_PATH%/src/flutter /MIR| (cmd /s /c exit /b 0)
cd %ENGINE_PATH%/src
gclient sync
matrix:
- name: build_and_test_windows_unopt_debug
compile_host_script: |
cd %ENGINE_PATH%/src
python flutter/tools/gn --runtime-mode debug --unoptimized
ninja -C out/host_debug_unopt
test_host_script: |
cd %ENGINE_PATH%/src
python flutter/testing/run_tests.py --type=engine
- name: build_windows_opt_debug
compile_host_script: |
cd %ENGINE_PATH%/src
python flutter/tools/gn --runtime-mode debug
ninja -C out/host_debug

0 comments on commit 52afb7d

Please sign in to comment.