Add hydra jobset

This commit is contained in:
Simon Bruder 2021-05-15 10:14:11 +02:00
parent 08715eacf1
commit d6ab4b7b2f
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -56,5 +56,13 @@
inherit (self) nixosModules;
};
};
# My hydra only has x86_64-linux builders
hydraJobs = if pkgs.lib.elem system [ "x86_64-linux" ]
then {
build = defaultPackage;
integration-test = checks.integration-test;
}
else { };
});
}