For those who enjoy watching technical screencasts, there's also a video about this subject available at https://www.youtube.com/watch?v=RXV0Y5Bn-QQ.
This repository contains a complex'ish example configuration for the Nix-based
continuous build system Hydra that new users can use
to get started. The file hydra-common.nix
defines basic
properties of a VBox-based virtual machine running NixOS 16.03, which
hydra-master.nix
extends to configure a running Hydra
server. hydra-slave.nix
, on the other hand, configures a
simple build slave for the main server to delegate build jobs to. Finally,
hydra-network.nix
ties those modules together into a
network definition for Nixops.
To run these examples quickly with nixops
on your local machine, you'll need
Also, your configuration.nix
file should include:
virtualisation.virtualbox.host.enable = true;
If those pre-conditions are met, follow these steps:
Generate an SSH key used by the Hydra master server to authenticate itself to the build slaves:
$ ssh-keygen -C "hydra@hydra.example.org" -N "" -f id_buildfarm
Set up your shell environment to use the nixos-16.03
release for all
further commands:
$ NIX_PATH="nixpkgs=https://github.com/nixos/nixpkgs-channels/archive/nixos-16.03.tar.gz"
$ export NIX_PATH
Start the server:
$ nixops create -d hydra hydra-network.nix
$ nixops deploy -d hydra
Ensure that the main server knows the binary cache for nixos-16.03
:
nixops ssh hydra -- nix-channel --update
If all these steps completed without errors, then nixops info -d hydra
will tell you
the IP address of the new machine(s). For example, let's say that the hydra
machine got assigned the address 192.168.56.101
. Then go to
http://192.168.56.101:8080/
to access the web front-end and sign in with the
username "alice
" and password "foobar
".
Now you are ready to create projects and jobsets the repository contains the following examples that you can use:
The last jobset performs several Haskell builds that may be quite expensive, so it's probably wise not to run that on virtual hardware but only on a real sever.
How to disable binary substitutions for higher evaluation performance.
How to run emergency garbage collections:
$ systemctl start hydra-update-gc-roots.service
$ systemctl start nix-gc.service
"Shares" are interpreted as follows: each jobset has a "fraction", which is its number of shares divided by the total number of shares. The queue runner records how much time a jobset has used over the last day as a fraction of the total time and then jobsets are ordered by their allocated fraction divided by the fraction of time used i.e. jobsets that have used less of their allotment are prioritized.