nixpkgs/pkgs/build-support/vm/test.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
880 B
Nix
Raw Normal View History

2021-08-21 00:31:26 +03:00
with import ../../.. { };
with vmTools;
2019-08-14 00:52:01 +03:00
{
# Run the PatchELF derivation in a VM.
buildPatchelfInVM = runInLinuxVM patchelf;
buildHelloInVM = runInLinuxVM hello;
buildPcmanrmInVM = runInLinuxVM (pcmanfm.overrideAttrs (old: {
# goes out-of-memory with many cores
enableParallelBuilding = false;
}));
2021-12-17 17:46:17 +03:00
testRPMImage = makeImageTestScript diskImages.fedora27x86_64;
buildPatchelfRPM = buildRPM {
name = "patchelf-rpm";
src = patchelf.src;
2021-12-17 17:46:17 +03:00
diskImage = diskImages.fedora27x86_64;
diskImageFormat = "qcow2";
};
2021-12-17 17:46:17 +03:00
testUbuntuImage = makeImageTestScript diskImages.ubuntu1804i386;
buildInDebian = runInLinuxImage (stdenv.mkDerivation {
name = "deb-compile";
src = patchelf.src;
2021-10-28 01:02:44 +03:00
diskImage = diskImages.ubuntu1804i386;
diskImageFormat = "qcow2";
memSize = 512;
2021-10-28 01:02:44 +03:00
postHook = ''
dpkg-query --list
'';
});
}