forked from ndmitchell/bake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbake.cabal
executable file
·139 lines (132 loc) · 3.66 KB
/
bake.cabal
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
cabal-version: >= 1.10
build-type: Simple
name: bake
version: 0.4
license: BSD3
license-file: LICENSE
category: Development
author: Neil Mitchell <[email protected]>
maintainer: Neil Mitchell <[email protected]>
copyright: Neil Mitchell 2014-2015
synopsis: Continuous integration system
description:
Bake is a continuous integration server, designed for large, productive, semi-trusted teams.
.
* /Large teams/ where there are at least several contributors working full-time on a single code base.
.
* /Productive teams/ which are regularly pushing code, many times a day.
.
* /Semi-trusted teams/ where code does not go through manual code review, but code does need to pass a test suite and perhaps some static analysis. People are assumed not to be malicious, but are fallible.
homepage: https://github.com/ndmitchell/bake#readme
bug-reports: https://github.com/ndmitchell/bake/issues
tested-with: GHC==7.10.1, GHC==7.8.4, GHC==7.6.3
extra-doc-files:
CHANGES.txt
README.md
data-files:
html/favicon.ico
source-repository head
type: git
location: https://github.com/ndmitchell/bake.git
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base == 4.*,
cmdargs >= 0.10,
shake >= 0.15,
directory,
bytestring,
containers,
text,
time,
random,
hashable,
transformers,
HTTP,
safe,
old-locale,
http-conduit,
http-client,
http-types,
wai-extra,
deepseq,
filepath,
aeson,
sqlite-simple,
direct-sqlite,
disk-free-space,
unordered-containers,
smtp-mail,
extra >= 1.1,
wai >= 3.0.1,
warp >= 3.0
exposed-modules:
Development.Bake
other-modules:
Development.Bake.Build
Development.Bake.Core.Args
Development.Bake.Core.Client
Development.Bake.Core.GC
Development.Bake.Core.Message
Development.Bake.Core.Run
Development.Bake.Core.Send
Development.Bake.Core.Type
Development.Bake.Email
Development.Bake.Git
Development.Bake.StepGit
Development.Bake.Pretty
Development.Bake.Server.Brain
Development.Bake.Server.Database
Development.Bake.Server.Memory
Development.Bake.Server.Property
Development.Bake.Server.Start
Development.Bake.Server.Stats
Development.Bake.Server.Store
Development.Bake.Server.Web
General.BigString
General.Database
General.Extra
General.HTML
General.Web
Paths_bake
-- don't use 'cabal test' since that loses the child stdout
executable bake-test
default-language: Haskell2010
hs-source-dirs: src
main-is: Test.hs
other-modules:
Example
Development.Bake.Test.Simulate
ghc-options: -threaded -main-is Test.main
build-depends:
base == 4.*,
cmdargs >= 0.10,
shake >= 0.15,
directory,
bytestring,
containers,
text,
old-locale,
time,
random,
hashable,
HTTP,
safe,
http-client,
http-conduit,
http-types,
wai-extra,
transformers,
deepseq,
aeson,
smtp-mail,
disk-free-space,
unordered-containers,
sqlite-simple,
direct-sqlite,
extra >= 0.2,
wai >= 3.0.1,
warp >= 3.0,
process,
filepath