Add hydra jobset

hydra
Simon Bruder 2021-05-15 10:14:11 +02:00
parent 08715eacf1
commit d6ab4b7b2f
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 8 additions and 0 deletions

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 { };
});
}