Files
hydra/t/jobs/basic.nix
2025-11-11 15:39:23 +01:00

25 lines
504 B
Nix

{ system ? builtins.currentSystem }:
with import ./config.nix { inherit system; };
{
empty_dir =
mkDerivation {
name = "empty-dir";
builder = ./empty-dir-builder.sh;
meta.maintainers = [ "alice@invalid.org" ];
meta.outPath = "${placeholder "out"}";
};
fails =
mkDerivation {
name = "fails";
builder = ./fail.sh;
};
succeed_with_failed =
mkDerivation {
name = "succeed-with-failed";
builder = ./succeed-with-failed.sh;
};
}