"vscode:/vscode.git/clone" did not exist on "fd5971be0bb11d1b5903fc6778c329b4fd93d569"
object_detection.blueprint 1.79 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
include "devtools/blueprint/ncl/blueprint_file.ncl";
include "releasetools/rapid/ncl/rapid_config.ncl";

blueprint_file = ::blueprint::BlueprintFile(
  project_name = "open_tf_object_detection",
  project_grouping = ["Search", "Search Features", "Image Search", "Visual Search"],
  mdb_groups = ["vale-project"],

  tech_lead = ["jonathanhuang", "kpmurphy"],

  dev_mailing_list = "object-detection-reviews@google.com",

  buganizer_component_ids = [163596],

  owned_code_depotpaths = [
    "//depot/google3/third_party/tensorflow_models/object_detection/...",
  ],
  buildable_units = [
    ::blueprint::BuildableUnit(
      name = "open_tf_object_detection.fastbuild",
      enable_continuous_build = true,
      enable_release = false,
      continuous_build_email = ::blueprint::ContinuousBuildEmailInfo(
        build_cop_email_addrs = ["vale-project+tap@google.com"]),
      build_patterns = [
        "third_party/tensorflow_models/object_detection/...",
      ],
      build_flags = [
        "--compilation_mode=fastbuild",
      ],
      test_patterns = [
        "third_party/tensorflow_models/object_detection/...",
      ],
      enable_coverage = true,

    ),
    ::blueprint::BuildableUnit(
      name = "open_tf_object_detection.opt",
      enable_continuous_build = true,
      enable_release = false,
      continuous_build_email = ::blueprint::ContinuousBuildEmailInfo(
        build_cop_email_addrs = ["vale-project+tap@google.com"]),
      build_patterns = [
        "third_party/tensorflow_models/object_detection/...",
        "image/understanding/object_detection/...",
      ],
      build_flags = [
        "--compilation_mode=opt",
      ],
      test_patterns = [
        "third_party/tensorflow_models/object_detection/...",
        "image/understanding/object_detection/...",
      ],
    ),
  ],
);