From 8743f94f4945607dbe248a5a91e46d5f6f3068aa Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Fri, 2 Apr 2021 11:09:03 -0700 Subject: [PATCH] Create dev/ci.yaml (#79396) --- .ci.yaml | 31 +++++++++++++++++++++++++++++++ CODEOWNERS | 1 + 2 files changed, 32 insertions(+) create mode 100644 .ci.yaml diff --git a/.ci.yaml b/.ci.yaml new file mode 100644 index 00000000000..01ed15a8c60 --- /dev/null +++ b/.ci.yaml @@ -0,0 +1,31 @@ +# Describes the targets run in continuous integration environment. +# +# Cocoon[1] uses this file to generate a checklist of tasks to be performed for +# every commit. +# +# [1] github.com/flutter/cocoon +# +# Required properties: +# * name: human readable, unique string identifier that describes the target +# * builder: name of the LUCI builder to run the target on +# See https://cs.opensource.google/flutter/infra/+/master:config/ +# +# Optional properties: +# * bringup: boolean hether the target can block the tree. +# Targets should be marked as bringup when newly added, until they have +# soaked for a 25 runs. Tragets that are flaky but not being actively worked +# on should be hidden because they just cause confusion otherwise. +# * dependencies: List of target names this target is dependent on. +# This only supports one parent target, and when that target completes +# successfully, this target will be started. +# Child targets can reuse artifacts from parent targets. +# * properties: Map of properties to pass to recipe +enabled_branches: + - master +targets: + - name: analyze_linux + bringup: true + builder: Linux analyze + properties: + validation: analyze + validation_name: Analyze diff --git a/CODEOWNERS b/CODEOWNERS index ed7664e5aee..40336f300dc 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -6,6 +6,7 @@ # # Use git ls-files '' without a / prefix to see the list of matching files. +/.ci.yaml @caseyhillers @christopherfujino /CODEOWNERS @jmagman /dev/ci/ @christopherfujino /packages/flutter_goldens @Piinks