You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2022/08/11 14:11:01 UTC

[buildstream] branch tristan/light-cache-keys-without-sandbox-run updated (170ca059b -> 3ca809e14)

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a change to branch tristan/light-cache-keys-without-sandbox-run
in repository https://gitbox.apache.org/repos/asf/buildstream.git


 discard 170ca059b element.py: Ignore environment/sandbox config when not running sandbox
 discard 186738cde compose element: setup BST_RUN_COMMANDS
 discard 86cd1496a sandbox.py: Clarifications to the utility of Sandbox._disable_run()
     add ca573d45a doc/source/main_install.rst: Buildstream depends on lzip
     add 30d3f2829 Update main_install.rst
     add 4ff8f3d4c Merge pull request #1710 from jjardon/jjardon/lzip
     add 3f1e72a70 element.py: Remove redundant context from Plugin.warn() invokation
     add be74e1037 _protos/buildstream/v2/artifact.proto: Adding buildroot to the artifact proto
     add 741ebaf90 _versions.py, _artifact.py: Bumping artifact versions
     add 5a43e6328 _artifact.py, element.py, buildqueue.py: Don't try to calculate artifact size
     add 9452762ab Cache the sandbox root when caching build trees
     add 883affa14 element.py, sandbox.py: Removing usebuildtree codepath from staging
     add 9d4e3daee tests/integration/shellbuildtrees.py: Test build shell with script element
     add 415489b5c tests/integration/shellbuildtrees.py: Test build shells with compose elements
     add b70243760 Merge pull request #1707 from apache/tristan/full-build-tree
     add 7e904c544 sandbox.py: Clarifications to the utility of Sandbox._disable_run()
     add 9b95305c5 compose element: setup BST_RUN_COMMANDS
     add 3ca809e14 element.py: Ignore environment/sandbox config when not running sandbox

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   (170ca059b)
            \
             N -- N -- N   refs/heads/tristan/light-cache-keys-without-sandbox-run (3ca809e14)

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:
 doc/source/main_install.rst                        |  1 +
 src/buildstream/_artifact.py                       | 60 ++++++++++++--
 src/buildstream/_artifactcache.py                  | 15 +++-
 .../_protos/buildstream/v2/artifact.proto          |  3 +
 .../_protos/buildstream/v2/artifact_pb2.py         | 12 +--
 src/buildstream/_scheduler/queues/buildqueue.py    |  2 +-
 src/buildstream/_stream.py                         | 52 ++++--------
 src/buildstream/_versions.py                       |  2 +-
 src/buildstream/element.py                         | 93 ++++++++++++++--------
 src/buildstream/sandbox/sandbox.py                 |  1 -
 tests/cachekey/project/elements/build1.expected    |  2 +-
 tests/cachekey/project/elements/build2.expected    |  2 +-
 tests/cachekey/project/elements/build3.expected    |  2 +-
 tests/cachekey/project/elements/compose1.expected  |  2 +-
 tests/cachekey/project/elements/compose2.expected  |  2 +-
 tests/cachekey/project/elements/compose3.expected  |  2 +-
 tests/cachekey/project/elements/compose4.expected  |  2 +-
 tests/cachekey/project/elements/compose5.expected  |  2 +-
 tests/cachekey/project/elements/import1.expected   |  2 +-
 tests/cachekey/project/elements/import2.expected   |  2 +-
 tests/cachekey/project/elements/import3.expected   |  2 +-
 tests/cachekey/project/elements/script1.expected   |  2 +-
 .../cachekey/project/elements/variables1.expected  |  2 +-
 tests/cachekey/project/sources/local1.expected     |  2 +-
 tests/cachekey/project/sources/local2.expected     |  2 +-
 tests/cachekey/project/sources/remote1.expected    |  2 +-
 tests/cachekey/project/sources/remote2.expected    |  2 +-
 tests/cachekey/project/sources/tar1.expected       |  2 +-
 tests/cachekey/project/sources/tar2.expected       |  2 +-
 tests/cachekey/project/target.expected             |  2 +-
 tests/frontend/completions.py                      |  4 +-
 .../compose-dep-fail.bst}                          |  9 ++-
 .../elements/build-shell/compose-dep-success.bst   | 13 +++
 .../project/elements/build-shell/compose-fail.bst  |  4 +
 .../elements/build-shell/compose-success.bst       |  4 +
 .../corruption-2.bst => build-shell/script.bst}    |  3 +-
 tests/integration/shellbuildtrees.py               | 79 +++++++++++++++++-
 37 files changed, 283 insertions(+), 114 deletions(-)
 copy tests/integration/project/elements/{echo-env-var.bst => build-shell/compose-dep-fail.bst} (53%)
 create mode 100644 tests/integration/project/elements/build-shell/compose-dep-success.bst
 create mode 100644 tests/integration/project/elements/build-shell/compose-fail.bst
 create mode 100644 tests/integration/project/elements/build-shell/compose-success.bst
 copy tests/integration/project/elements/{script/corruption-2.bst => build-shell/script.bst} (51%)