mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
nixos/release.nix: Add Hydra job for AArch64 SD image
Based on how ISO images are added to the release.
This commit is contained in:
parent
4c21180a13
commit
181e0675da
@ -55,6 +55,17 @@ let
|
||||
}).config.system.build.isoImage);
|
||||
|
||||
|
||||
makeSdImage =
|
||||
{ module, maintainers ? ["dezgeg"], system }:
|
||||
|
||||
with import nixpkgs { inherit system; };
|
||||
|
||||
hydraJob ((import lib/eval-config.nix {
|
||||
inherit system;
|
||||
modules = [ module versionModule ];
|
||||
}).config.system.build.sdImage);
|
||||
|
||||
|
||||
makeSystemTarball =
|
||||
{ module, maintainers ? ["viric"], system }:
|
||||
|
||||
@ -155,6 +166,10 @@ in rec {
|
||||
inherit system;
|
||||
});
|
||||
|
||||
sd_image = forMatchingSystems [ "aarch64-linux" ] (system: makeSdImage {
|
||||
module = ./modules/installer/cd-dvd/sd-image-aarch64.nix;
|
||||
inherit system;
|
||||
});
|
||||
|
||||
# A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF).
|
||||
ova = forMatchingSystems [ "x86_64-linux" ] (system:
|
||||
|
Loading…
Reference in New Issue
Block a user