From f9c1355b4722bbe70ff8d0d620b46941d99bfc31 Mon Sep 17 00:00:00 2001 From: Jeff Grafton Date: Wed, 11 Apr 2018 16:31:05 -0700 Subject: [PATCH] kazel: skip third_party/etcd.* --- build/root/.kazelcfg.json | 3 ++- third_party/BUILD | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/build/root/.kazelcfg.json b/build/root/.kazelcfg.json index 3d5d1a1edb7b9..ead969b479ee4 100644 --- a/build/root/.kazelcfg.json +++ b/build/root/.kazelcfg.json @@ -1,7 +1,8 @@ { "GoPrefix": "k8s.io/kubernetes", "SkippedPaths": [ - "^_.*" + "^_.*", + "^third_party/etcd.*" ], "AddSourcesRules": true, "K8sOpenAPIGen": true diff --git a/third_party/BUILD b/third_party/BUILD index eb6118c5b2c6c..2beec65ec667a 100644 --- a/third_party/BUILD +++ b/third_party/BUILD @@ -4,8 +4,13 @@ licenses(["notice"]) filegroup( name = "package-srcs", - srcs = glob(["**"]), - tags = ["automanaged"], + srcs = glob( + ["**"], + exclude = [ + "etcd*/**", + "etcd*.tar.gz", + ], + ), visibility = ["//visibility:private"], )