feat(tvix): Thread a log sink through calls to buildDerivation
Similarly to how we did for buildPaths, add a std::ostream& log_sink parameter to the build_derivation method on Store, and pass it std::cerr when called at the top level by nix commands - most notably, the build-remote hook binary, so that we get build logs when using tvix as a remote builder. Change-Id: I0f8f729ba8429d4838a0a135a5c2ac1e1a95d575 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2176 Tested-by: BuildkiteCI Reviewed-by: andi <andi@notmuch.email> Reviewed-by: kanepyork <rikingcoding@gmail.com>
This commit is contained in:
parent
1d22874ab2
commit
49024be056
13 changed files with 31 additions and 18 deletions
8
third_party/nix/src/libstore/store-api.hh
vendored
8
third_party/nix/src/libstore/store-api.hh
vendored
|
|
@ -468,12 +468,14 @@ class Store : public std::enable_shared_from_this<Store>, public Config {
|
|||
on-disk .drv file). Note that ‘drvPath’ is only used for
|
||||
informational purposes. */
|
||||
// TODO(tazjin): Thread std::ostream through here, too.
|
||||
virtual BuildResult buildDerivation(const Path& drvPath,
|
||||
virtual BuildResult buildDerivation(std::ostream& log_sink,
|
||||
const Path& drvPath,
|
||||
const BasicDerivation& drv,
|
||||
BuildMode buildMode) = 0;
|
||||
|
||||
BuildResult buildDerivation(const Path& drvPath, const BasicDerivation& drv) {
|
||||
return buildDerivation(drvPath, drv, bmNormal);
|
||||
BuildResult buildDerivation(std::ostream& log_sink, const Path& drvPath,
|
||||
const BasicDerivation& drv) {
|
||||
return buildDerivation(log_sink, drvPath, drv, bmNormal);
|
||||
}
|
||||
|
||||
/* Ensure that a path is valid. If it is not currently valid, it
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue