From e72d7b3c14c0fbea35e191ef2a009a1fc9455a3a Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Fri, 21 May 2021 14:07:38 -0700 Subject: [PATCH] Migrate to .ci.yaml (#361) --- .ci.yaml | 16 ++++++++++++++++ dev/README.md | 19 ------------------- dev/try_builders.json | 9 --------- 3 files changed, 16 insertions(+), 28 deletions(-) create mode 100644 .ci.yaml delete mode 100644 dev/README.md delete mode 100644 dev/try_builders.json diff --git a/.ci.yaml b/.ci.yaml new file mode 100644 index 0000000000..7d666e926d --- /dev/null +++ b/.ci.yaml @@ -0,0 +1,16 @@ +# Describes the targets run in continuous integration environment. +# +# Flutter infra uses this file to generate a checklist of tasks to be performed +# for every commit. +# +# More information at: +# * https://github.com/flutter/cocoon/blob/master/scheduler/README.md +enabled_branches: + - master + +targets: + - name: fuchsia_ctl + builder: fuchsia_ctl + postsubmit: false + scheduler: luci + diff --git a/dev/README.md b/dev/README.md deleted file mode 100644 index 4690b19019..0000000000 --- a/dev/README.md +++ /dev/null @@ -1,19 +0,0 @@ -This directory contains resources that the Flutter team uses during -the development of packages. - -## Luci builder file -`try_builders.json` contains the supported luci try builders -for packages. It follows format: -```json -{ - "builders":[ - { - "name":"yyy", - "repo":"packages", - "enabled":true - } - ] -} -``` -This file will be mainly used in [`flutter/cocoon`](https://github.com/flutter/cocoon) -to trigger/update pre-submit luci tasks. diff --git a/dev/try_builders.json b/dev/try_builders.json deleted file mode 100644 index 6986e9e23d..0000000000 --- a/dev/try_builders.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "builders":[ - { - "name":"fuchsia_ctl", - "repo":"packages", - "enabled":true - } - ] -}