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
|
# debci - setting up a development environment
Install the dependencies and build dependencies (look at debian/control). You
probably also want to install a few other packages:
* `apt-cacher-ng` to cache package downloads.
* `moreutils` if you want to test the supporting for testing packages in parallel.
* `lighttpd` to run the web interface (see below for more information)
* Note: you might want to not have lighttpd running as a daemon on your system.
After having the dependencies installed, the first step is to set up the test
environment. To do that, you need to run the following command (which needs
root permissions):
$ sudo ./bin/debci-setup
If you run debci right now, it would run the tests for **every package** in
Debian, and you don't want that for a development environment. To restrict
debci to a list of packages, create a file named `whitelist` inside the
`config` directory, containing one package name per line. Here is an example
with packages whose tests are pretty fast:
```
$ cat config/whitelist
ruby-defaults
rubygems-integration
ruby-ffi
rake
```
You might want to test with other packages, that's fine. Just take into
consideration that the more packages you have, the longer debci will take to
finish a run.
Now you are ready to actually run debci:
$ ./bin/debci-batch
$ ./bin/debci-generate-index
To visualize the web interface, follow the following steps:
$ make
$ ./tools/server.sh
Now browse to [http://localhost:8888/](http://localhost:8888/)
If you think the web interface looks empty, it is because a single debci run
does not provide enough data to work with. You might want to generate some
fake data so the web interface will look a lot nicer:
$ ./tools/gen-fake-data.sh
# debci web UI development
If you are interested in working on the web UI, first make sure that you have
a development environment setup and some test data.
The web UI is generated using Ruby and ERB templates. A {Debci::HTML} object
in `bin/debci-generate-html` generates all of the pages for the web UI by
using the templates.
The templates contain HTML and debci Ruby API calls to display information
in the interface.
Once you make changes to the templates or other code for the web UI,
run the following to regenerate the HTML for the interface:
$ ./bin/debci generate-html
If you make changes to the documentation (HACKING.md, RUBYAPI.md, etc.),
run the following to regenerate it:
$ make
|