ci: add explicit ci file
* Build a nixos configuration with all profiles available as part of ci pipeline. * Remove darwin packages as we do not have a ci agent for them. * Build shell as part of ci
This commit is contained in:
parent
b3ec025f24
commit
d6f50531b2
15
hosts/ci.nix
Normal file
15
hosts/ci.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
imports =
|
||||||
|
let
|
||||||
|
profiles = builtins.filter (n: n != ../profiles/core)
|
||||||
|
(import ../profiles/list.nix);
|
||||||
|
in
|
||||||
|
profiles ++ [ ../users/nixos ../users/root ];
|
||||||
|
|
||||||
|
security.mitigations.acceptRisk = true;
|
||||||
|
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
|
||||||
|
}
|
21
nix/ci.nix
Normal file
21
nix/ci.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
let
|
||||||
|
inherit (default.inputs.nixos.lib) recurseIntoAttrs;
|
||||||
|
|
||||||
|
default = (import ../compat).defaultNix;
|
||||||
|
|
||||||
|
packages = import ../default.nix;
|
||||||
|
|
||||||
|
shell = recurseIntoAttrs default.devShell.x86_64-linux;
|
||||||
|
|
||||||
|
ci = recurseIntoAttrs
|
||||||
|
default.nixosConfigurations.ci.config.system.build.toplevel;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
inherit ci shell;
|
||||||
|
# platforms supported by our hercules-ci agent
|
||||||
|
inherit (packages)
|
||||||
|
i686-linux
|
||||||
|
x86_64-linux
|
||||||
|
aarch64-linux
|
||||||
|
;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user