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
57
58
59
60
61
62
63
64
65
66
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
)
package(default_testonly = 1)
haskell_library(
name = "lib-a",
srcs = ["LibA.hs"],
deps = ["//tests/hackage:base"],
)
haskell_library(
name = "lib-b",
srcs = ["LibB.hs"],
visibility = ["//visibility:private"],
deps = [
":lib-a",
"//tests/hackage:base",
],
)
# Targets that must FAIL. These are tagged as manual so that
#
# $ bazel build //...
#
# does not fail.
haskell_library(
# Should fail because it doesn't specify "base" explicitly.
name = "lib-cFailure",
srcs = ["LibC.hs"],
tags = ["manual"],
deps = [":lib-b"],
)
haskell_library(
name = "lib-c",
srcs = ["LibC.hs"],
deps = [
":lib-b",
"//tests/hackage:base",
],
)
haskell_library(
# Should fail because it doesn't specify "lib-a" explicitly.
name = "lib-dFailure",
srcs = ["LibD.hs"],
tags = ["manual"],
deps = [
":lib-b",
"//tests/hackage:base",
],
)
haskell_library(
name = "lib-d",
srcs = ["LibD.hs"],
deps = [
":lib-a",
":lib-b",
"//tests/hackage:base",
],
)
|