Skip to content

Commit c5f3507

Browse files
committed
Skip macos & windows
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
1 parent 96ad01d commit c5f3507

File tree

1 file changed

+7
-2
lines changed
  • tensorflow_io/core/filesystems

1 file changed

+7
-2
lines changed

tensorflow_io/core/filesystems/BUILD

+7-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,15 @@ cc_library(
3636
linkstatic = True,
3737
deps = [
3838
"//tensorflow_io/core/filesystems/az",
39-
"//tensorflow_io/core/filesystems/dfs",
4039
"//tensorflow_io/core/filesystems/hdfs",
4140
"//tensorflow_io/core/filesystems/http",
4241
"//tensorflow_io/core/filesystems/s3",
43-
],
42+
] + select({
43+
"@bazel_tools//src/conditions:windows": [],
44+
"@bazel_tools//src/conditions:darwin": [],
45+
"//conditions:default": [
46+
"//tensorflow_io/core/filesystems/dfs",
47+
],
48+
}),
4449
alwayslink = 1,
4550
)

0 commit comments

Comments
 (0)