Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haskell/ghc-builder
ghc builder bot
https://github.com/haskell/ghc-builder
Last synced: about 1 month ago
JSON representation
ghc builder bot
- Host: GitHub
- URL: https://github.com/haskell/ghc-builder
- Owner: haskell
- License: other
- Created: 2014-04-01T17:41:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-30T07:04:13.000Z (almost 9 years ago)
- Last Synced: 2024-04-16T00:49:06.516Z (7 months ago)
- Language: Haskell
- Size: 737 KB
- Stars: 6
- Watchers: 6
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
The GHC builder
===============
The GHC builder is a client/server system that allows us to build and test GHC
on lots of different computers scattered around the world (the clients, or
build slaves), and aggregate the test results centrally (the server).Building the build slave
------------------------```
cd client/
cabal sandbox init
cabal sandbox add-source ../common/
cabal install --dependencies-only
cabal build
```Controlling resource usage
--------------------------It is recommended that you run the builder-client in a dedicated VM or
container environment to control resources. However, in the absence of that
you can use ulimit on UNIX and UNIX-like systems to control the maximum
resources that builder-client will consume. Windows System Resource Manager
can be used in a similar manner.### Example: Run builder-client with a 2GB virtual memory limit
```
ulimit -v 2000000
builder-client -v
```See Also:
https://ghc.haskell.org/trac/ghc/wiki/Builder