This is an automated email from the ASF dual-hosted git repository.
juergbi pushed a change to branch abderrahim/digest-environment
in repository https://gitbox.apache.org/repos/asf/buildstream.git
discard 4f716b763 _sandboxremote.py: Upload blobs for subsandbox roots
discard 1cb48772e buildelement: Add the digest-environment config property
discard 5d6221d35 sandbox.py: add method to create a sub-sandbox
add acc028bff Require buildbox-casd 1.2.6
add 8e7b096ca sandbox: Create single buildbox-casd instance for remote
execution
add 2ddb26e30 Drop obsolete cleanup methods
add 9c4378ab2 Update protobuf to 5.29.5 and grpcio to 1.69.0
add ea41a51f7 _protos: Update local_cas.proto from buildbox
add bdf0d46d2 sandbox: Add helper method to fetch action result outputs
add b8e6876d7 Support remote action cache for nested execution
add be2004432 tests/integration/sandbox.py: Add test for remote action
cache config
add dbd0ee717 Merge pull request #2031 from apache/jbilleter/action-cache
add b0dcf3925 _sandboxremote.py: stop trying to pull partial artifacts
add e867d6f3a _artifactcache.py: drop {fetch,find}_missing_blobs
add 360eb7113 Merge pull request #2032 from
apache/abderrahim/sandbox-remote-no-artifactcache
add 6c0651a8b tar.py: Fix hardlink extraction with latest Python
add 6d93bd3d4 tests/sources/tar.py: Add test for symlinks
add 3032c1827 Merge pull request #2039 from apache/jbilleter/tar
add 9c0b554c5 Implement loading of user provided provenance information
add d6d5e738c tests/frontend/show.py: Add SourceInfo test for user
provided data
add 8129838d4 Merge pull request #2009 from
apache/tristan/additional-source-provenance
add 0f939d66a ci: Update images
add ed6522f36 sandbox: Add support for action cache updates via
`remote-apis-socket`
add 62129a52c tests/integration/sandbox.py: Add test for
`action-cache-enable-update`
add f80077d4c Merge pull request #2038 from
apache/jbilleter/nested-ac-update
add f0fd450dd sandbox.py: add method to create a sub-sandbox
add 13b6ffc0e buildelement: Add the digest-environment config property
add 0d5212168 _sandboxremote.py: Upload blobs for subsandbox roots
add 5273788c0 element.py: Support per-sandbox overlap collector
add c924644bd sandbox.py: Make `create_subsandbox()` private
add ceca3adcf element.py: Add `subsandbox()` method
add 6e7c8c695 buildelement.py: Move digest-environment logic to
`configure_sandbox()`
add 2c69fa81d element.py: Improve logging of build environment
add 3ed3ac834 tests/integration: Add tests for `digest-environment`
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (4f716b763)
\
N -- N -- N refs/heads/abderrahim/digest-environment (3ed3ac834)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/common.env | 2 +-
doc/source/format_declaring.rst | 10 ++
doc/source/using_config.rst | 14 +-
requirements/requirements.in | 2 +-
requirements/requirements.txt | 4 +-
src/buildstream/_artifactcache.py | 52 -------
src/buildstream/_assetcache.py | 39 +----
src/buildstream/_cas/casdprocessmanager.py | 2 +-
src/buildstream/_cas/casremote.py | 11 +-
src/buildstream/_context.py | 9 --
src/buildstream/_elementproxy.py | 5 +-
src/buildstream/_frontend/widget.py | 3 +-
src/buildstream/_loader/metasource.py | 7 +-
src/buildstream/_loader/types.py | 1 +
.../bazel/remote/asset/v1/remote_asset_pb2.py | 6 +-
.../bazel/remote/asset/v1/remote_asset_pb2_grpc.py | 2 +-
.../remote/execution/v2/remote_execution_pb2.py | 6 +-
.../execution/v2/remote_execution_pb2_grpc.py | 2 +-
.../_protos/build/bazel/semver/semver_pb2.py | 6 +-
.../_protos/build/bazel/semver/semver_pb2_grpc.py | 2 +-
.../_protos/build/buildgrid/local_cas.proto | 84 ++++++++++
.../_protos/build/buildgrid/local_cas_pb2.py | 131 ++++++++--------
.../_protos/build/buildgrid/local_cas_pb2.pyi | 54 ++++++-
.../_protos/build/buildgrid/local_cas_pb2_grpc.py | 48 +++++-
.../_protos/buildstream/v2/artifact_pb2.py | 6 +-
.../_protos/buildstream/v2/artifact_pb2_grpc.py | 2 +-
.../_protos/buildstream/v2/source_pb2.py | 6 +-
.../_protos/buildstream/v2/source_pb2_grpc.py | 2 +-
.../_protos/google/api/annotations_pb2.py | 6 +-
.../_protos/google/api/annotations_pb2_grpc.py | 2 +-
src/buildstream/_protos/google/api/http_pb2.py | 6 +-
.../_protos/google/api/http_pb2_grpc.py | 2 +-
.../_protos/google/bytestream/bytestream_pb2.py | 6 +-
.../google/bytestream/bytestream_pb2_grpc.py | 2 +-
.../_protos/google/longrunning/operations_pb2.py | 6 +-
.../google/longrunning/operations_pb2_grpc.py | 2 +-
src/buildstream/_protos/google/rpc/code_pb2.py | 6 +-
.../_protos/google/rpc/code_pb2_grpc.py | 2 +-
src/buildstream/_protos/google/rpc/status_pb2.py | 6 +-
.../_protos/google/rpc/status_pb2_grpc.py | 2 +-
src/buildstream/_remote.py | 11 --
src/buildstream/_remotespec.py | 72 ++++-----
src/buildstream/buildelement.py | 8 +-
src/buildstream/element.py | 73 ++++++---
src/buildstream/plugins/sources/tar.py | 12 +-
src/buildstream/sandbox/_config.py | 17 ++-
src/buildstream/sandbox/_reremote.py | 79 ++++++++++
src/buildstream/sandbox/_sandboxbuildboxrun.py | 46 +++++-
src/buildstream/sandbox/_sandboxreapi.py | 27 ++++
src/buildstream/sandbox/_sandboxremote.py | 170 +++------------------
src/buildstream/sandbox/sandbox.py | 48 +++---
src/buildstream/source.py | 75 ++++++++-
src/buildstream/types.py | 36 +++++
tests/frontend/show.py | 44 +++++-
.../elements/{tar.bst => user-provenance.bst} | 3 +
tests/integration/digest-environment.py | 103 +++++++++++++
.../elements/digest-environment/base-buildtree.bst | 12 ++
.../digest-environment/base-plus-extra-dep.bst | 14 ++
.../project/elements/digest-environment/base.bst | 12 ++
.../project/elements/digest-environment/merge.bst | 16 ++
.../project/elements/digest-environment/two.bst | 17 +++
...socket.bst => remote-apis-socket-ac-update.bst} | 1 +
tests/integration/sandbox.py | 92 +++++++++++
tests/sources/tar.py | 45 ++++++
.../malicious_target.bst => symlinks/target.bst} | 0
65 files changed, 1084 insertions(+), 515 deletions(-)
create mode 100644 src/buildstream/sandbox/_reremote.py
copy tests/frontend/source-info/elements/{tar.bst => user-provenance.bst} (58%)
create mode 100644 tests/integration/digest-environment.py
create mode 100644
tests/integration/project/elements/digest-environment/base-buildtree.bst
create mode 100644
tests/integration/project/elements/digest-environment/base-plus-extra-dep.bst
create mode 100644
tests/integration/project/elements/digest-environment/base.bst
create mode 100644
tests/integration/project/elements/digest-environment/merge.bst
create mode 100644
tests/integration/project/elements/digest-environment/two.bst
copy tests/integration/project/elements/sandbox/{remote-apis-socket.bst =>
remote-apis-socket-ac-update.bst} (82%)
copy tests/sources/tar/{out-of-basedir-hardlinks/malicious_target.bst =>
symlinks/target.bst} (100%)