Add hydra jobset
This commit is contained in:
parent
08715eacf1
commit
d6ab4b7b2f
|
@ -56,5 +56,13 @@
|
||||||
inherit (self) nixosModules;
|
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 { };
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue