mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
release.nix: add manual builds
This commit is contained in:
parent
23d8c6ca3d
commit
da88e60bca
1 changed files with 16 additions and 8 deletions
24
release.nix
24
release.nix
|
@ -6,10 +6,15 @@
|
||||||
let
|
let
|
||||||
inherit (release) mapTestOn packagePlatforms pkgs all linux darwin;
|
inherit (release) mapTestOn packagePlatforms pkgs all linux darwin;
|
||||||
|
|
||||||
|
system = "x86_64-darwin";
|
||||||
|
|
||||||
mapPlatforms = systems: pkgs.lib.mapAttrs (n: v: systems);
|
mapPlatforms = systems: pkgs.lib.mapAttrs (n: v: systems);
|
||||||
|
|
||||||
genExample = configuration: pkgs.lib.genAttrs [ "x86_64-darwin" ] (system:
|
buildFromConfig = configuration: sel: sel
|
||||||
(import ./. { inherit nixpkgs configuration system; }).system
|
(import ./. { inherit nixpkgs configuration system; }).config;
|
||||||
|
|
||||||
|
makeSystem = configuration: pkgs.lib.genAttrs [ system ] (system:
|
||||||
|
buildFromConfig configuration (config: config.system.build.toplevel)
|
||||||
);
|
);
|
||||||
|
|
||||||
makeTest = test:
|
makeTest = test:
|
||||||
|
@ -47,10 +52,8 @@ let
|
||||||
out = config.system.build.toplevel;
|
out = config.system.build.toplevel;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
system = "x86_64-darwin";
|
|
||||||
in
|
in
|
||||||
(import ./. { inherit nixpkgs configuration system; }).config.system.build.run-test;
|
buildFromConfig configuration (config: config.system.build.run-test);
|
||||||
|
|
||||||
release = import <nixpkgs/pkgs/top-level/release-lib.nix> {
|
release = import <nixpkgs/pkgs/top-level/release-lib.nix> {
|
||||||
inherit supportedSystems scrubJobs;
|
inherit supportedSystems scrubJobs;
|
||||||
|
@ -85,9 +88,14 @@ let
|
||||||
meta.description = "Release-critical builds for the darwin channel";
|
meta.description = "Release-critical builds for the darwin channel";
|
||||||
};
|
};
|
||||||
|
|
||||||
examples.hydra = genExample ./modules/examples/hydra.nix;
|
manualHTML = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manualHTML);
|
||||||
examples.lnl = genExample ./modules/examples/lnl.nix;
|
manualEpub = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manualEpub);
|
||||||
examples.simple = genExample ./modules/examples/simple.nix;
|
manpages = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manpages);
|
||||||
|
options = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.optionsJSON);
|
||||||
|
|
||||||
|
examples.hydra = makeSystem ./modules/examples/hydra.nix;
|
||||||
|
examples.lnl = makeSystem ./modules/examples/lnl.nix;
|
||||||
|
examples.simple = makeSystem ./modules/examples/simple.nix;
|
||||||
|
|
||||||
tests.activation-scripts = makeTest ./tests/activation-scripts.nix;
|
tests.activation-scripts = makeTest ./tests/activation-scripts.nix;
|
||||||
tests.checks-nix-gc = makeTest ./tests/checks-nix-gc.nix;
|
tests.checks-nix-gc = makeTest ./tests/checks-nix-gc.nix;
|
||||||
|
|
Loading…
Add table
Reference in a new issue