Skip to content

Commit

Permalink
chore: Add more descriptive/precise tags to bazel build rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Jan 20, 2025
1 parent cc1933a commit 6278b87
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ haskell_library(
name = "hs-msgpack-binary",
srcs = glob(["src/**/*.*hs"]),
src_strip_prefix = "src",
tags = ["no-cross"],
tags = [
"haskell",
"no-cross",
],
version = "0.0.17",
visibility = ["//visibility:public"],
deps = [
Expand Down
10 changes: 8 additions & 2 deletions tools/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ load("@rules_haskell//haskell:defs.bzl", "haskell_binary")
haskell_binary(
name = "msgpack-parser",
srcs = ["msgpack-parser.hs"],
tags = ["no-cross"],
tags = [
"haskell",
"no-cross",
],
visibility = ["//tools/haskell:__pkg__"],
deps = [
"//hs-msgpack-arbitrary",
Expand All @@ -15,7 +18,10 @@ haskell_binary(
haskell_binary(
name = "msgpack-gen-sample",
srcs = ["msgpack-gen-sample.hs"],
tags = ["no-cross"],
tags = [
"haskell",
"no-cross",
],
visibility = ["//tools/haskell:__pkg__"],
deps = [
"//hs-msgpack-arbitrary",
Expand Down

0 comments on commit 6278b87

Please sign in to comment.