Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-13 | formatting and a few minor changes | Ben Burdette | |
2020-05-13 | consistent capitalization | Ben Burdette | |
2020-05-13 | change status messages to info level | Ben Burdette | |
2020-05-12 | remove unused extra json fields | Ben Burdette | |
2020-05-12 | new pos format for more errors | Ben Burdette | |
2020-05-11 | fixes to merged code | Ben Burdette | |
2020-05-11 | Merge branch 'master' into errors-phase-2 | Ben Burdette | |
2020-05-11 | switch from printError warnings to logWarnings | Ben Burdette | |
2020-05-11 | Merge pull request #3568 from kolloch/outputHashModeError | Domen Kožar | |
libstore/build.cc: more explicit error about form of output | |||
2020-05-11 | Update src/libstore/build.cc | Domen Kožar | |
2020-05-09 | doc: consistently refer to 'fixed-output' with a dash | Benjamin Hipple | |
General cleanup that makes it easier to search for the term. | |||
2020-05-06 | todo removal | Ben Burdette | |
2020-05-06 | Merge pull request #3546 from guibou/nix_readfile_on_0_sized_files | Eelco Dolstra | |
builtins.readFile: do not truncate content | |||
2020-05-06 | libstore/build.cc: more explicit about form of output | Peter Kolloch | |
Be more explicit about why we expect a regular file as output when outputHashMode=flat for a fixed output derivation. | |||
2020-05-06 | Merge pull request #3562 from pikajude/master | Eelco Dolstra | |
Use fragment size for autoGC capacity calculation | |||
2020-05-06 | Revert "Merge pull request #3558 from LnL7/ssh-ng-stderr" | Eelco Dolstra | |
This reverts commit 3ebfbecdd187002569257f7cb183bf9e0b39af1e, reversing changes made to c089c52d5f1cff888552f485775b74226dcbe618. https://github.com/NixOS/nix/pull/3558 | |||
2020-05-04 | appending to hints; remove _printError | Ben Burdette | |
2020-05-04 | nix auto-gc: use fragment size | Jude Taylor | |
2020-05-04 | Flag: Use designated initializers | Eelco Dolstra | |
2020-05-03 | convert some printError calls to logError | Ben Burdette | |
2020-05-02 | remote-store: don't log raw stderr by default | Daiderd Jordan | |
For remote stores the log messages are already forwarded as structured STDERR_RESULT messages so the old format is duplicate information. But still included with -vvv since it could be useful for debugging problems. $ nix build -L /nix/store/nl71b2niws857ffiaggyrkjwgx9jjzc0-foo.drv --store ssh-ng://localhost Hello World! foo> Hello World! [1/0/1 built] building foo Fixes #3556 | |||
2020-05-01 | convert some errors | Ben Burdette | |
2020-04-29 | errorinfo constructor test | Ben Burdette | |
2020-04-29 | Remove the `drain` argument from `readFile` | Guillaume Bouchard | |
Now it is always `drain` (see previous commit). | |||
2020-04-29 | Only call grantpt on MacOS systems | Antoine Eiche | |
The commit 3cc1125595d97b4ab7369e37e4ad22f4cfecb8b2 adds a `grantpt` call on the builder pseudo terminal fd. This call is actually only required for MacOS, but it however requires a RW access to /dev/pts which is only RO bindmounted in the Bazel Linux sandbox. So, Nix can not be actually run in the Bazel Linux sandbox for unneeded reasons. | |||
2020-04-28 | Error classname as name | Ben Burdette | |
2020-04-21 | Replace select() with poll() to allow waiting on more than FD_SETSIZE fds | Dustin DeWeese | |
2020-04-21 | remove 'format' from Error constructor calls | Ben Burdette | |
2020-04-19 | logEI for tunnelLogger and progressbar | Ben Burdette | |
2020-04-17 | logError, logWarning; Logger functions; switch to Verbosity enum | Ben Burdette | |
2020-04-15 | Merge pull request #3458 from zimbatm/nix-user-conf-dir | Eelco Dolstra | |
NIX_USER_CONF_FILES | |||
2020-04-14 | add NIX_USER_CONF_FILES | zimbatm | |
Motivation: maintain project-level configuration files. Document the whole situation a bit better so that it corresponds to the implementation, and add NIX_USER_CONF_FILES that allows overriding which user files Nix will load during startup. | |||
2020-04-10 | Fix nix-build --check -K in sandbox w/o root | Bruce Toll | |
Temporarily add user-write permission to build directory so that it can be moved out of the sandbox to the store with a .check suffix. This is necessary because the build directory has already had its permissions set read-only, but write permission is required to update the directory's parent link to move it out of the sandbox. Updated the related --check "derivation may not be deterministic" messages to consistently use the real store paths. Added test for non-root sandbox nix-build --check -K to demonstrate issue and help prevent regressions. | |||
2020-04-10 | Merge pull request #2689 from tollb/fix/delete_tmp_dir_when_build_check_ok | Domen Kožar | |
Delete temporary directory on successful build | |||
2020-04-09 | Delete temporary directory on successful build | Bruce Toll | |
With --check and the --keep-failed (-K) flag, the temporary directory was being retained regardless of whether the build was successful and reproducible. This removes the temporary directory, as expected, on a reproducible check build. Added tests to verify that temporary build directories are not retained unnecessarily, particularly when using --check with --keep-failed. | |||
2020-04-09 | gc.cc: Ignore hidden files in temproots | Philipp Middendorf | |
2020-04-08 | datatransfer.{cc,hh} -> filetransfer.{cc,hh} | Nikola Knezevic | |
2020-04-08 | DataTransfer -> FileTransfer | Nikola Knezevic | |
2020-04-08 | Add upload method | Nikola Knezevic | |
2020-04-08 | actDownload -> actDataTransfer | Nikola Knezevic | |
2020-04-08 | DownloadError -> DataTransferError | Nikola Knezevic | |
2020-04-08 | DownloadItem -> TransferItem | Nikola Knezevic | |
2020-04-08 | {get,make,new}Downloader -> DataTransfer | Nikola Knezevic | |
2020-04-08 | enqueueDownload -> enqueueDataTransfer | Nikola Knezevic | |
2020-04-08 | DownloadResult -> DataTransferResult | Nikola Knezevic | |
2020-04-08 | DownloadSettings -> DataTransferSettings | Nikola Knezevic | |
2020-04-08 | Rename src/lib/download.* to src/lib/datatransfer.* | Nikola Knezevic | |
2020-04-08 | DownloadRequest -> DataTransferRequest | Nikola Knezevic | |
2020-04-08 | build.cc: improve message if home directory exists | Domen Kožar | |
2020-04-08 | Downloader: Only write data to the sink on a 200 response | Eelco Dolstra | |
Hopefully fixes #3278. |