about summary refs log tree commit diff
path: root/tests/build-remote.sh (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-01-13 Fix tests using user namespaces on kernels that don't have itTuomas Tynkkynen1-1/+1
Disable various tests if the kernel doesn't support unprivileged user namespaces (e.g. Arch Linux disables them) or disable them via a sysctl (Debian, Ubuntu). Fixes #1521 Fixes #1625
2017-10-24 Allow shorter syntax for chroot storesEelco Dolstra1-3/+3
You can now say '--store /tmp/nix' instead of '--store local?root=/tmp/nix'.
2017-10-23 Pass all settings to build-remoteEelco Dolstra1-9/+4
This ensures that command line flags such as --builders get passed correctly.
2017-08-31 Rename a few configuration optionsEelco Dolstra1-1/+1
In particular, drop the "build-" and "gc-" prefixes which are pointless. So now you can say nix build --no-sandbox instead of nix build --no-build-use-sandbox
2017-05-05 Make the location of the build directory in the sandbox configurableEelco Dolstra1-2/+6
This is mostly for use in the sandbox tests, since if the Nix store is under /build, then we can't use /build as the build directory.
2017-05-02 build-remote: Add a basic testEelco Dolstra1-0/+24
This only runs on Linux because it requires a diverted store (which uses mount/user namespaces).