Legacy Evaluation
This page describes the behavior of Hercules CI Agent before version 0.9. While this behavior is still available in current versions of the agent, we recommend to use the herculesCI attribute described in Evaluation.
|
Evaluation is the first step when it comes to building your project. It is performed by your agent as follows:
-
At the top-level of your repository, the agent will search for a Nix file to evaluate in the following order:
nix/ci.nix
,ci.nix
ordefault.nix
-
NIX_PATH
will be empty. Make sure you pin nixpkgs and not rely on<nixpkgs>
search path. This is to ensure reproducability and purity also when it comes to nixpkgs -
If any of the attributes fail to evaluate, job evaluation phase will be marked as failed and error messages will be shown inline per attribute
Traversal
Attribute set traversal
This page describes the behavior of Hercules CI Agent before version 0.9. While this behavior is still available in current versions of the agent, we recommend to use the herculesCI attribute described in Evaluation.
|
The value resulting from Top level is traversed according to the following rules:
-
If the current value is a derivation, build it asynchronously
-
If the current value is a functor, ignore the attributes, call it and traverse it
-
If the current value is an attribute set and
-
If it is the root value, traverse one level of attributes.
-
If the attribute set contains
recurseForDerivations = true
, traverse one level of attributes. -
Otherwise, ignore
-
-
Otherwise, ignore
Note that for an attribute set a
it must be the root or it must have a.recurseForDerivations == true
, which can be added with pkgs.recurseIntoAttrs
. This must be repeated in every layer of the nested attribute sets. Additionaly, recursion into nested attribute sets is limited to a depth of 10 attributes or functor calls.
Example of nested attribute sets
This is an example ci.nix
that builds myDrvs.hello
.
let
pkgs = builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
};
in
{
myDrvs = pkgs.recurseIntoAttrs {
hello = pkgs.hello;
};
}
Platforms and build matrix
This page describes the behavior of Hercules CI Agent before version 0.9. While this behavior is still available in current versions of the agent, we recommend to use the herculesCI attribute described in Evaluation.
|
Evaluation is always performed on an x86_64-linux
agent. To build for other platforms, you have to explicitly pass the system
parameter to Nixpkgs.
To build your project for multiple platforms, the recommended approach is to make the top-level value of ci.nix
an attribute set with an attribute per platform. Make sure to wrap the values in recurseIntoAttrs
. The minimal repo from the Getting Started guide has an example.
This technique can be nested to achieve a build matrix where multiple independent variables are varied.
If some derivations can not be built on a certain platform or configuration, you can use lib.optionalAttrs
, lib.filterAttrs
or other functions to remove those.
See also the guide Multi-platform CI and Build Matrix.
Differences with nix-build
This page describes the behavior of Hercules CI Agent before version 0.9. While this behavior is still available in current versions of the agent, we recommend to use the herculesCI attribute described in Evaluation.
|
The agent expects the root of the file to be an attribute set and traverses it similarly to how nix build
does it.
A few differences exists:
-
Hercules CI allows all attribute names, including ones with characters like
.
that are ignored bynix build
-
The root must not be a list
Differences with Hydra
This page describes the behavior of Hercules CI Agent before version 0.9. While this behavior is still available in current versions of the agent, we recommend to use the herculesCI attribute described in Evaluation.
|
Hydra is not compatible with nix-build
. It rejects the recurseForDerivations
attribute.
The ci.nix
format can be built by Hydra using a conversion function, but Hydra will not understand Hercules CI-specific attributes when introduced.
stripRecurseForDerivations =
lib.filterAttrsRecursive (n: _: n != "recurseForDerivations");
Hydra reads meta.hydraPlatforms
to determine whether to build for a platform.
This logic is not present in the agent, but can be implemented in Nix with a
filtering function if necessary.