[fuchsia] Remove support for VDL

The Flutter tests have moved to using `ffx product-bundle` and
`ffx emu`, https://flutter-review.googlesource.com/c/recipes/+/36960 removed the use of VDL from them. There's a lot of code that can be removed here:
- Logic to download the image archives: these come from ffx product-bundle now.
- Logic to download the packages: same thing
- All logic associated to the emulator files: ffx emu abstracts all of this.
- Logic to download a custom SDK: The tests use the SDK that is fetched by gclient. The one that was previously fetched was only used to start VDL.
- All remaining VDL support code.


led runs:
  - Linux Fuchsia: https://ci.chromium.org/raw/build/logs.chromium.org/flutter/led/sebmarchand_google.com/240675f6bc8838ce8902cd9bd13537d246c3a2827326f7b32f5ca2d8e1109304/+/build.proto?server=chromium-swarm.appspot.com
  - Linux Fuchsia FEMU: https://ci.chromium.org/raw/build/logs.chromium.org/flutter/led/sebmarchand_google.com/addf7bc29671a6d479488607fc324312bd15811cd6628ebd58d967dc9175dce2/+/build.proto?server=chromium-swarm.appspot.com
  - Linux Fuchsia arm64 FEMU: https://ci.chromium.org/raw/build/logs.chromium.org/flutter/led/sebmarchand_google.com/418810d88477506397ac308620e7265d3b2093f78b1ebe9da999359e02aea916/+/build.proto?server=chromium-swarm.appspot.com

Note that is significantly reduces the number of steps on the bots as we don't download the SDK+images anymore (we don't need them).

Change-Id: I3a553a556f2122021efba10b720fa644ad6a54c8
Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/39980
Commit-Queue: Sébastien Marchand <sebmarchand@google.com>
Reviewed-by: Zach Anderson <zra@google.com>
27 files changed
tree: 83c703967c758347e69dee18e9c46759df33cadd
  1. infra/
  2. recipe_modules/
  3. recipes/
  4. .gitignore
  5. .style.yapf
  6. AUTHORS
  7. LICENSE
  8. OWNERS
  9. README.md
  10. recipes.py
README.md

Flutter LUCI Recipes

This repository contains Flutter's LUCI recipes. For the LUCI infrastructure config, see flutter/infra. Actual builds can be seen at ci.chromium.org.

Supported repositories roll their .ci.yaml into flutter/infra, which updates what properties builds have. For example, flutter config specifies various dependencies the different tests require, which are then used by the flutter_deps recipe_module No modifications to flutter/infra are required to work on the recipes.

Configuration

Tricium configurations recipes repo.

Testing locally

Running python recipes.py test train will execute all of the tests in this repository

Troubleshooting

Required binary is not found on PATH: cipd when testing locally

You need to ensure depot_tools is installed. See Depot Tools Installation Tutorial