Add all_files target to gcs_smoke_test BUILD file.
authorMichael Case <mikecase@google.com>
Wed, 28 Feb 2018 23:51:18 +0000 (15:51 -0800)
committerTensorFlower Gardener <gardener@tensorflow.org>
Wed, 28 Feb 2018 23:57:41 +0000 (15:57 -0800)
PiperOrigin-RevId: 187396477

tensorflow/BUILD
tensorflow/tools/integration_tests/gcs_smoke_test/BUILD.bazel

index a4e7602beabb7c859b671e83c6083e7fbf654400..4b2facd6b38cd2e35986207faf6ba59bde16539d 100644 (file)
@@ -674,6 +674,7 @@ filegroup(
         "//tensorflow/tools/docs:all_files",
         "//tensorflow/tools/git:all_files",
         "//tensorflow/tools/graph_transforms:all_files",
+        "//tensorflow/tools/integration_tests/gcs_smoke_test:all_files",
         "//tensorflow/tools/mlpbtxt:all_files",
         "//tensorflow/tools/proto_text:all_files",
         "//tensorflow/tools/quantization:all_files",
index 439d86c5d2c10d15f68247c0df42ce488c10d6be..0acc139df975fe58ad436837cedd711c54752598 100755 (executable)
@@ -54,3 +54,14 @@ integration_test(
     test_docker_image = toolchain_container_images()["tensorflow"],
     test_type = "MultiMachine",
 )
+
+filegroup(
+    name = "all_files",
+    srcs = glob(
+        ["**/*"],
+        exclude = [
+            "**/METADATA",
+            "**/OWNERS",
+        ],
+    ),
+)