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

juergbi pushed a change to branch jbilleter/nested-reapi
in repository https://gitbox.apache.org/repos/asf/buildstream.git


 discard b52065e89 Enable local execution in buildbox-casd to support nested 
execution
 discard 17c7f97c2 _context.py: Add `effective_build_max_jobs` helper
 discard 16e865c4a sandbox: Add support for `remote-apis-socket`
     add bd7d36e6b source.py: Make SourceInfo.serialize() a public API.
     add a6b26ad2e Merge pull request #2016 from 
apache/tristan/public-source-info-serialize
     add 1943e860d cascache: fix pushing with remote cache
     add ad22165dc Merge pull request #2015 from 
apache/abderrahim/fix-push-storage-service
     add 907f5fcd3 types.py: Add CoreWarnings.UNAVAILABLE_SOURCE_INFO
     add 3be4aa9e9 source.py: Issue a configurable warning when 
collect_source_info() is unimplemented
     add cac1ea80c tests/frontend/show.py: Test unimplemented 
collect_source_info()
     add f5b999727 Merge pull request #2018 from 
apache/tristan/source-info-fatal-warning
     add 839ea42c9 sync protobuf requirements with the grpcio-tools version used
     add 5e9eb7601 Add note to update the requirements whenever the grpc code 
is regenerated
     add 28ac5e4af Merge pull request #2017 from 
apache/abderrahim/protobuf-warnings
     add b9e429f8d scheduler: Stop scheduling from the imperative queue when 
asked to quit
     add bde7d673b _testing/runcli.py: Don't fail when removing non-existant 
artifacts
     add 7dfb54177 tests/integration/cachedfail.py: Refactored to use its own 
individual project
     add 8078dd78a tests/integration/cachedfail.py: Test scheduler behavior 
after failed builds
     add 9d698d2a1 Merge pull request #2005 from apache/abderrahim/quit-build
     add 5805c5b4f NEWS: Prepare for 2.5.0 release
     add a847a7788 Empty commit to work around a potential versioneer bug
     add ccad294c3 _context.py: Add `effective_build_max_jobs` helper
     add 9529afa0c Enable local execution in buildbox-casd to support nested 
execution
     add 754e2a720 sandbox: Add support for `remote-apis-socket`
     add 06e3efcc3 tests/integration/sandbox.py: Add test for 
`remote-apis-socket`

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   (b52065e89)
            \
             N -- N -- N   refs/heads/jbilleter/nested-reapi (06e3efcc3)

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:
 NEWS                                               |  33 ++++
 doc/source/hacking/grpc_protocols.rst              |   3 +
 requirements/requirements.in                       |   2 +-
 setup.py                                           |   6 +
 src/buildstream/__init__.py                        |   1 -
 src/buildstream/_cas/cascache.py                   |   2 +-
 src/buildstream/_frontend/widget.py                |  22 +--
 src/buildstream/_scheduler/scheduler.py            |  21 +-
 src/buildstream/_testing/runcli.py                 |   9 +-
 src/buildstream/sandbox/_config.py                 |   4 +-
 src/buildstream/sandbox/_sandboxbuildboxrun.py     |   4 +
 src/buildstream/source.py                          |  63 +++---
 src/buildstream/types.py                           |   6 +
 tests/frontend/show.py                             |  31 ++-
 .../fatal/elements/unimplemented.bst               |   4 +
 .../fatal/plugins/fatal_unimplemented.py}          |   0
 .../fatal}/project.conf                            |  11 +-
 .../non-fatal/elements/unimplemented.bst           |   4 +
 .../non-fatal/plugins/non_fatal_unimplemented.py}  |   0
 .../non-fatal}/project.conf                        |   8 +-
 .../source-info/elements/unimplemented.bst         |   4 -
 .../elements/base-also-fail.bst}                   |   3 +-
 .../elements/base-fail.bst}                        |   3 +-
 .../elements/base-success.bst}                     |   2 +-
 .../integration/cached-fail/elements/base.bst      |   0
 .../elements/depends-on-base-fail-expect-foo.bst}  |   3 +-
 .../elements/depends-on-two-failures.bst           |   9 +
 .../{project => cached-fail}/project.conf          |   0
 tests/integration/cachedfail.py                    | 220 ++++++++++-----------
 .../{build-arch.bst => remote-apis-socket.bst}     |   5 +-
 tests/integration/sandbox.py                       |  11 ++
 31 files changed, 276 insertions(+), 218 deletions(-)
 create mode 100644 
tests/frontend/source-info-unimplemented/fatal/elements/unimplemented.bst
 copy tests/frontend/{source-info/plugins/unimplemented.py => 
source-info-unimplemented/fatal/plugins/fatal_unimplemented.py} (100%)
 copy tests/frontend/{source-info => 
source-info-unimplemented/fatal}/project.conf (57%)
 create mode 100644 
tests/frontend/source-info-unimplemented/non-fatal/elements/unimplemented.bst
 rename tests/frontend/{source-info/plugins/unimplemented.py => 
source-info-unimplemented/non-fatal/plugins/non_fatal_unimplemented.py} (100%)
 copy tests/frontend/{source-info => 
source-info-unimplemented/non-fatal}/project.conf (57%)
 delete mode 100644 tests/frontend/source-info/elements/unimplemented.bst
 copy tests/integration/{project/elements/build-shell/script.bst => 
cached-fail/elements/base-also-fail.bst} (60%)
 copy tests/integration/{project/elements/build-shell/script.bst => 
cached-fail/elements/base-fail.bst} (60%)
 copy tests/integration/{project/elements/build-shell/script.bst => 
cached-fail/elements/base-success.bst} (67%)
 copy 
src/buildstream/_testing/_sourcetests/project/elements/base/base-alpine.bst => 
tests/integration/cached-fail/elements/base.bst (100%)
 copy tests/integration/{project/elements/build-shell/script.bst => 
cached-fail/elements/depends-on-base-fail-expect-foo.bst} (64%)
 create mode 100644 
tests/integration/cached-fail/elements/depends-on-two-failures.bst
 copy tests/integration/{project => cached-fail}/project.conf (100%)
 copy tests/integration/project/elements/sandbox/{build-arch.bst => 
remote-apis-socket.bst} (55%)

Reply via email to