2009-08-27 04:57:43 -07:00
|
|
|
{ nixpkgs ? ../nixpkgs }:
|
2009-03-09 14:10:53 -07:00
|
|
|
|
2009-06-24 02:14:28 -07:00
|
|
|
let
|
|
|
|
|
|
|
|
|
|
|
|
makeIso =
|
2009-09-16 05:31:23 -07:00
|
|
|
{ module, description, maintainers ? ["eelco"]}:
|
2009-06-24 02:14:28 -07:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
|
|
, officialRelease ? false
|
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
|
|
|
with import nixpkgs {inherit system;};
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
|
|
|
|
|
2009-08-27 04:57:43 -07:00
|
|
|
versionModule = { system.nixosVersion = version; };
|
2009-12-15 15:26:52 -08:00
|
|
|
|
|
|
|
config = (import lib/eval-config.nix {
|
2009-08-27 04:57:43 -07:00
|
|
|
inherit system nixpkgs;
|
|
|
|
modules = [ module versionModule ];
|
2009-12-15 15:26:52 -08:00
|
|
|
}).config;
|
|
|
|
|
|
|
|
iso = config.system.build.isoImage;
|
2009-06-24 02:14:28 -07:00
|
|
|
|
|
|
|
in
|
|
|
|
# Declare the ISO as a build product so that it shows up in Hydra.
|
|
|
|
runCommand "nixos-iso-${version}"
|
|
|
|
{ meta = {
|
|
|
|
description = "NixOS installation CD (${description}) - ISO image for ${system}";
|
2009-09-16 05:31:23 -07:00
|
|
|
maintainers = map (x: lib.getAttr x lib.maintainers) maintainers;
|
2009-06-24 02:14:28 -07:00
|
|
|
};
|
2009-11-10 13:42:38 -08:00
|
|
|
inherit iso;
|
2009-12-15 15:26:52 -08:00
|
|
|
passthru = { inherit config; };
|
2009-06-24 02:14:28 -07:00
|
|
|
}
|
|
|
|
''
|
|
|
|
ensureDir $out/nix-support
|
2009-11-10 13:42:38 -08:00
|
|
|
echo "file iso" $iso/iso/*.iso* >> $out/nix-support/hydra-build-products
|
2009-06-24 02:14:28 -07:00
|
|
|
''; # */
|
2008-12-17 05:25:23 -08:00
|
|
|
|
|
|
|
|
|
|
|
jobs = rec {
|
|
|
|
|
2009-12-15 15:26:52 -08:00
|
|
|
inherit makeIso; # used by tests/test-nixos-install-from-cd/
|
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
|
|
|
|
tarball =
|
2009-03-09 14:10:53 -07:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
2008-12-17 05:25:23 -08:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2009-03-09 14:10:53 -07:00
|
|
|
with import nixpkgs {};
|
2008-12-17 05:25:23 -08:00
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "nixos-tarball";
|
2009-03-06 06:11:05 -08:00
|
|
|
|
|
|
|
version = builtins.readFile ./VERSION;
|
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
src = nixosSrc;
|
2009-03-06 06:11:05 -08:00
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
inherit officialRelease;
|
|
|
|
|
|
|
|
distPhase = ''
|
2009-03-25 13:12:44 -07:00
|
|
|
releaseName=nixos-$VERSION$VERSION_SUFFIX
|
2008-12-17 05:25:23 -08:00
|
|
|
ensureDir "$out/tarballs"
|
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName
|
|
|
|
cd ..
|
|
|
|
tar cfvj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
manual =
|
2009-03-09 14:12:46 -07:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
2008-12-17 05:25:23 -08:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2009-03-09 14:11:17 -07:00
|
|
|
import "${nixosSrc}/doc/manual" {
|
2009-06-22 09:06:11 -07:00
|
|
|
pkgs = import nixpkgs {};
|
2009-09-15 07:09:18 -07:00
|
|
|
options =
|
2009-08-27 04:57:43 -07:00
|
|
|
(import lib/eval-config.nix {
|
|
|
|
inherit nixpkgs;
|
|
|
|
modules = [ ];
|
2009-09-15 07:09:18 -07:00
|
|
|
}).options;
|
2009-09-18 08:40:02 -07:00
|
|
|
revision = with nixosSrc;
|
|
|
|
if rev == 1234 then "HEAD" else toString rev;
|
2008-12-17 05:25:23 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-24 02:14:28 -07:00
|
|
|
iso_minimal = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
|
|
|
|
description = "minimal";
|
|
|
|
};
|
2009-09-13 03:47:51 -07:00
|
|
|
|
|
|
|
/*
|
2009-07-16 02:22:40 -07:00
|
|
|
iso_rescue = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-rescue.nix;
|
2009-07-29 21:20:56 -07:00
|
|
|
description = "rescue";
|
2009-07-16 02:22:40 -07:00
|
|
|
};
|
2009-09-13 03:47:51 -07:00
|
|
|
*/
|
2009-07-16 02:22:40 -07:00
|
|
|
|
2009-06-24 02:14:28 -07:00
|
|
|
iso_graphical = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
|
|
|
description = "graphical";
|
|
|
|
};
|
2009-08-31 07:56:19 -07:00
|
|
|
|
2009-12-15 15:26:52 -08:00
|
|
|
# Hacky: doesn't depend on configuration. Yet configuration is evaluated (TODO)
|
|
|
|
minimal_install_archive = {system ? "i686-linux"}: (iso_minimal {inherit system;})
|
|
|
|
.config.system.build.minimalInstallArchive;
|
2009-08-31 07:56:19 -07:00
|
|
|
|
2010-01-07 05:19:38 -08:00
|
|
|
# the archive installer can't be tested without chroot which requires being root
|
|
|
|
# options: run in kvm or uml ?
|
|
|
|
# TODO
|
|
|
|
|
2010-01-05 03:18:43 -08:00
|
|
|
tests =
|
2009-08-31 07:56:19 -07:00
|
|
|
{ services ? ../services }:
|
2010-01-05 03:18:43 -08:00
|
|
|
let
|
|
|
|
t = import ./tests {
|
|
|
|
inherit nixpkgs services;
|
|
|
|
system = "i686-linux";
|
|
|
|
};
|
|
|
|
in {
|
2010-01-05 15:59:29 -08:00
|
|
|
firefox = t.firefox.test;
|
2010-01-07 08:45:35 -08:00
|
|
|
installer.lvm = t.installer.lvm.test;
|
2010-01-07 05:19:38 -08:00
|
|
|
installer.separateBoot = t.installer.separateBoot.test;
|
2010-01-07 08:45:35 -08:00
|
|
|
installer.simple = t.installer.simple.test;
|
2010-01-05 03:18:43 -08:00
|
|
|
kde4 = t.kde4.test;
|
|
|
|
quake3 = t.quake3.test;
|
2010-01-05 04:04:04 -08:00
|
|
|
subversion = t.subversion.report;
|
|
|
|
trac = t.trac.test;
|
2010-01-05 03:18:43 -08:00
|
|
|
};
|
2009-08-31 07:56:19 -07:00
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-04-08 07:01:16 -07:00
|
|
|
in jobs
|