You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by ju...@apache.org on 2021/02/20 14:11:06 UTC

[buildstream] branch juerg/buildbox updated (f6178fc -> 4f617ed)

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

juergbi pushed a change to branch juerg/buildbox
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


 discard f6178fc  doc/source/main_install.rst: Update BuildBox components to 0.0.38
     add f7f9c97  element.py: Remove local __remote_execution_specs instance variable
     add eda23aa  _remotespec.py: Moving RemoteSpec and RemoteExecutionSpec to its own file
     add 497e1ca  Remote execution can only be configured in user configuration
     add 8cfa27f  plugins/elements/junction.py: Remove ambiguous cache related junction parameters
     add a61f9f1  _remotespec.py: Modified format to put the certs in an "auth" dictionary.
     add b8d1de7  Refactor remote asset user configuration
     add 300e813  node.pyi: Fleshing out more type information about nodes.
     add fd51cf2  _context.py: Changed artifact and source cache configuration again.
     add e89a17a  _frontend/widget.py: Print remote execution setup and project cache servers
     add d1d9f33  NEWS: Document breaking change, removed support for deprecated RE config
     add 10ad071  NEWS: Documenting breaking change, redesign of remote cache configuration
     add 7a35498  doc: Redocumenting artifact/source cache servers.
     add c143131  Merge pull request #1434 from apache/tristan/change-remote-config
     add 5034c9c  .github/compose/ci.remote-execution.yml: Fix tests
     add a7fd921  Merge pull request #1444 from apache/tristan/fix-remote-execution-tests
     add 77f2f48  _frontend/cli.py: Removing support for deprecated commands.
     add b05dd1f  _remotespec.py: Adding RemoteSpec.new_from_string()
     add 4b90394  Moving HostMount from _project.py -> types.py
     add 97deb41  Moving some cython functions into _utils.pyx
     add d2c9c89  Support specifying remotes on the command line.
     add f0e2e79  doc: Documenting how to specify remotes on the command line.
     add a292743  NEWS: Updating with some new breaking changes
     add d4cb3be  Merge pull request #1438 from apache/tristan/remote-cli-options
     add 7fcb131  _context.py: Remote `prompt` as a valid configuration key
     add b646a8f  _frontend/widget.py: Format full element names in `bst show --format %{deps}`
     add 651bb00  doc/source/using_config.rst: Completely and thoroughly document user config.
     add aabb43e  src/buildstream/data/userconfig.yaml: Remove some comments.
     add 822b83f  Merge pull request #1442 from apache/tristan/user-config-docs
     add e66910d  _frontend/cli.py: Add `--except` option to `bst source push`
     add 9de6fb3  Merge pull request #1445 from apache/tristan/add-except-option
     add 4f617ed  doc/source/main_install.rst: Update BuildBox components to 0.0.38

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   (f6178fc)
            \
             N -- N -- N   refs/heads/juerg/buildbox (4f617ed)

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/compose/ci.remote-execution.yml            |    4 +-
 .pylintrc                                          |    2 -
 NEWS                                               |   18 +
 doc/source/format_project.rst                      |  162 +--
 doc/source/using_commands.rst                      |   71 ++
 doc/source/using_config.rst                        | 1128 +++++++++++++++++---
 doc/source/using_configuring_cache_server.rst      |   57 +-
 setup.py                                           |    2 -
 src/buildstream/_artifactcache.py                  |   49 +-
 src/buildstream/_assetcache.py                     |  430 +++-----
 src/buildstream/_cas/casremote.py                  |   12 +-
 src/buildstream/_context.py                        |  429 ++++++--
 src/buildstream/_elementsourcescache.py            |   13 +-
 src/buildstream/_frontend/app.py                   |    2 +-
 src/buildstream/_frontend/cli.py                   |  420 +++++---
 src/buildstream/_frontend/widget.py                |   81 +-
 src/buildstream/_loader/_loader.pyi                |    1 -
 src/buildstream/_loader/_loader.pyx                |   52 -
 src/buildstream/_loader/loader.py                  |    4 +-
 src/buildstream/_platform/platform.py              |    2 +-
 src/buildstream/_project.py                        |   91 +-
 src/buildstream/_remote.py                         |  205 +---
 src/buildstream/_remotespec.py                     |  493 +++++++++
 src/buildstream/_scheduler/jobs/_job.pyi           |    1 -
 src/buildstream/_scheduler/jobs/_job.pyx           |   15 -
 src/buildstream/_scheduler/jobs/job.py             |    2 +-
 src/buildstream/_sourcecache.py                    |   15 +-
 src/buildstream/_stream.py                         |  482 +++++----
 src/buildstream/_utils.pyi                         |    2 +
 src/buildstream/_utils.pyx                         |   50 +
 src/buildstream/data/userconfig.yaml               |   55 +-
 src/buildstream/element.py                         |   17 +-
 src/buildstream/node.pyi                           |   51 +-
 src/buildstream/plugins/elements/junction.py       |   13 +-
 src/buildstream/plugins/elements/stack.py          |    2 +-
 src/buildstream/sandbox/_sandboxremote.py          |  180 +---
 src/buildstream/testing/runcli.py                  |    4 +-
 src/buildstream/types.py                           |   22 +-
 tests/artifactcache/capabilities.py                |    6 +-
 tests/artifactcache/config.py                      |  130 +--
 tests/artifactcache/junctions.py                   |  159 +--
 tests/artifactcache/pull.py                        |   15 +-
 tests/artifactcache/push.py                        |   24 +-
 tests/frontend/artifact_checkout.py                |    2 +-
 tests/frontend/artifact_delete.py                  |    4 +-
 tests/frontend/artifact_pull.py                    |    4 +-
 tests/frontend/artifact_show.py                    |    2 +-
 tests/frontend/buildcheckout.py                    |    6 +-
 tests/frontend/completions.py                      |   13 +-
 tests/frontend/default_target.py                   |    2 +-
 tests/frontend/help.py                             |    4 +-
 tests/frontend/large_directory.py                  |    2 +-
 tests/frontend/pull.py                             |   68 +-
 tests/frontend/push.py                             |   99 +-
 tests/frontend/remote-caches.py                    |    8 +-
 tests/frontend/workspace.py                        |    2 +-
 tests/integration/artifact.py                      |    6 +-
 tests/integration/cachedfail.py                    |    8 +-
 tests/integration/pullbuildtrees.py                |   16 +-
 tests/integration/shell.py                         |    2 +-
 tests/integration/shellbuildtrees.py               |   12 +-
 tests/remotecache/simple.py                        |    2 +-
 tests/remoteexecution/buildtree.py                 |    4 +-
 tests/remoteexecution/partial.py                   |    5 +-
 tests/sandboxes/remote-exec-config.py              |   63 +-
 .../missing-certs}/project.conf                    |    0
 tests/sourcecache/capabilities.py                  |   12 +-
 tests/sourcecache/fetch.py                         |    6 +-
 tests/sourcecache/push.py                          |   20 +-
 tests/sourcecache/workspace.py                     |    6 +-
 70 files changed, 3162 insertions(+), 2189 deletions(-)
 delete mode 100644 src/buildstream/_loader/_loader.pyi
 delete mode 100644 src/buildstream/_loader/_loader.pyx
 create mode 100644 src/buildstream/_remotespec.py
 delete mode 100644 src/buildstream/_scheduler/jobs/_job.pyi
 delete mode 100644 src/buildstream/_scheduler/jobs/_job.pyx
 copy tests/sandboxes/{missing-command => remote-exec-config/missing-certs}/project.conf (100%)