1
0
Fork 0
mirror of https://github.com/NixOS/hydra.git synced 2024-10-18 17:02:28 -04:00
hydra/tests/jobs/basic.nix

21 lines
351 B
Nix
Raw Normal View History

2011-03-17 09:25:27 -04:00
with import ./config.nix;
2013-01-22 08:41:02 -05:00
{
empty_dir =
2011-03-17 09:25:27 -04:00
mkDerivation {
2011-03-16 09:18:12 -04:00
name = "empty-dir";
builder = ./empty-dir-builder.sh;
};
2013-01-22 08:41:02 -05:00
fails =
2011-03-17 09:25:27 -04:00
mkDerivation {
2011-03-16 09:18:12 -04:00
name = "fails";
builder = ./fail.sh;
};
2013-01-22 08:41:02 -05:00
succeed_with_failed =
2011-03-17 09:25:27 -04:00
mkDerivation {
2011-03-16 09:18:12 -04:00
name = "succeed-with-failed";
builder = ./succeed-with-failed.sh;
};
}