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 2021/08/26 09:31:54 UTC

[buildstream] branch master updated (14868a0 -> ed48998)

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

tvb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


    from 14868a0  Merge pull request #1490 from jjardon/jjardon/grpcio_1.34_master
     add ab71290  _frontend/complete.py: Workaround API break in click.Path()
     add af133e2  requirements: Refresh the static required versions used in tox environments.
     add e3333aa  tests/frontend/pull.py: Updated formatting to make black happier
     add 1a3166d  .pylintrc: Disable unused-private-member error
     add 1a574de  Address pylint errors
     add e0a241c  .github/run-ci.sh: Added script to run the github CI with docker locally.
     add ca4bfc3  .github/workflows/ci.yml: Route the github CI through the new script
     add be318bc  tests/plugins/loading.py: Refactor test to not depend on yaml.dump() formatting
     add b66e85b  tests/internals/yaml.py: Mark test_roundtrip_dump() as failing
     add da09edd  .github/: Remove the 'no-usedevelop' CI
     add 44e2207  .github/compose/ci.docker-compose.yml: Wholesale disable test parallelism
     add 187d801  .github/compose/ci.docker-compose.yml: Reinstate format checking with black
     new ed48998  Merge pull request #1494 from apache/tristan/refresh-deps

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/compose/ci.docker-compose.yml              |  10 +-
 .github/run-ci.sh                                  | 124 +++++++++++++++++++++
 .github/workflows/ci.yml                           |  36 +-----
 .pylintrc                                          |   5 +
 requirements/cov-requirements.txt                  |  10 +-
 requirements/dev-requirements.txt                  |  25 ++---
 requirements/requirements.txt                      |  28 ++---
 setup.py                                           |   8 +-
 src/buildstream/_cas/cascache.py                   |   4 +-
 src/buildstream/_cas/casdprocessmanager.py         |   6 +-
 src/buildstream/_cas/casserver.py                  |  27 +++--
 src/buildstream/_frontend/app.py                   |   4 +-
 src/buildstream/_frontend/cli.py                   |   2 +-
 src/buildstream/_frontend/complete.py              |  14 ++-
 src/buildstream/_frontend/widget.py                |   2 +-
 src/buildstream/_gitsourcebase.py                  |   4 +-
 src/buildstream/_messenger.py                      |   2 +-
 src/buildstream/_profile.py                        |   2 +-
 src/buildstream/_stream.py                         |  12 +-
 src/buildstream/downloadablefilesource.py          |   4 +-
 src/buildstream/element.py                         |   4 +-
 src/buildstream/plugin.py                          |   6 +-
 src/buildstream/sandbox/_sandboxbuildboxrun.py     |   2 +-
 src/buildstream/storage/_filebaseddirectory.py     |   2 +-
 src/buildstream/testing/_cachekeys.py              |   2 +-
 .../testing/_sourcetests/source_determinism.py     |   4 +-
 .../testing/_sourcetests/track_cross_junction.py   |   2 +-
 src/buildstream/testing/_update_cachekeys.py       |   2 +-
 src/buildstream/testing/_utils/site.py             |   2 +-
 src/buildstream/testing/runcli.py                  |  10 +-
 src/buildstream/types.py                           |   2 +-
 src/buildstream/utils.py                           |  13 ++-
 tests/examples/developing.py                       |   2 +-
 tests/format/project.py                            |   2 +-
 tests/frontend/artifact_log.py                     |   4 +-
 tests/frontend/buildcheckout.py                    |  22 ++--
 tests/frontend/cross_junction_workspace.py         |   2 +-
 tests/frontend/fetch.py                            |   2 +-
 tests/frontend/init.py                             |   4 +-
 tests/frontend/large_directory.py                  |   2 +-
 tests/frontend/logging.py                          |   2 +-
 tests/frontend/mirror.py                           |  12 +-
 tests/frontend/progress.py                         |   2 +-
 tests/frontend/pull.py                             |  12 +-
 tests/frontend/push.py                             |   4 +-
 tests/frontend/rebuild.py                          |   4 +-
 tests/frontend/show.py                             |   4 +-
 tests/frontend/source_checkout.py                  |   4 +-
 tests/frontend/track.py                            |   6 +-
 tests/frontend/workspace.py                        |  24 ++--
 tests/integration/artifact.py                      |   2 +-
 tests/integration/manual.py                        |  12 +-
 tests/integration/script.py                        |  16 +--
 tests/integration/shell.py                         |   6 +-
 tests/integration/source-determinism.py            |   4 +-
 tests/integration/stack.py                         |   4 +-
 tests/integration/workspace.py                     |  16 +--
 tests/internals/storage_vdir_import.py             |  12 +-
 tests/internals/utils_save_atomic.py               |  10 +-
 tests/internals/yaml.py                            |   7 +-
 tests/plugins/loading.py                           |  21 +---
 .../{project.conf => not-found-elements.conf}      |   7 ++
 .../{project.conf => not-found-sources.conf}       |   7 ++
 tests/remoteexecution/junction.py                  |   4 +-
 tests/remoteexecution/workspace.py                 |  10 +-
 tests/sourcecache/cache.py                         |   2 +-
 tests/sources/bzr.py                               |   2 +-
 tests/sources/git.py                               |  34 +++---
 tests/sources/local.py                             |   6 +-
 tests/sources/patch.py                             |  12 +-
 tests/sources/previous_source_access.py            |   4 +-
 tests/testutils/filetypegenerator.py               |   2 +-
 tests/testutils/python_repo.py                     |   6 +-
 73 files changed, 411 insertions(+), 289 deletions(-)
 create mode 100755 .github/run-ci.sh
 copy tests/plugins/loading/{project.conf => not-found-elements.conf} (53%)
 copy tests/plugins/loading/{project.conf => not-found-sources.conf} (54%)

[buildstream] 01/01: Merge pull request #1494 from apache/tristan/refresh-deps

Posted by tv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit ed48998ddfbff8e7c8045bca8f1850234fb6a38b
Merge: 14868a0 187d801
Author: Tristan Van Berkom <tr...@codethink.co.uk>
AuthorDate: Thu Aug 26 18:31:50 2021 +0900

    Merge pull request #1494 from apache/tristan/refresh-deps
    
    Update requirements and fix resulting problems

 .github/compose/ci.docker-compose.yml              |  10 +-
 .github/run-ci.sh                                  | 124 +++++++++++++++++++++
 .github/workflows/ci.yml                           |  36 +-----
 .pylintrc                                          |   5 +
 requirements/cov-requirements.txt                  |  10 +-
 requirements/dev-requirements.txt                  |  25 ++---
 requirements/requirements.txt                      |  28 ++---
 setup.py                                           |   8 +-
 src/buildstream/_cas/cascache.py                   |   4 +-
 src/buildstream/_cas/casdprocessmanager.py         |   6 +-
 src/buildstream/_cas/casserver.py                  |  27 +++--
 src/buildstream/_frontend/app.py                   |   4 +-
 src/buildstream/_frontend/cli.py                   |   2 +-
 src/buildstream/_frontend/complete.py              |  14 ++-
 src/buildstream/_frontend/widget.py                |   2 +-
 src/buildstream/_gitsourcebase.py                  |   4 +-
 src/buildstream/_messenger.py                      |   2 +-
 src/buildstream/_profile.py                        |   2 +-
 src/buildstream/_stream.py                         |  12 +-
 src/buildstream/downloadablefilesource.py          |   4 +-
 src/buildstream/element.py                         |   4 +-
 src/buildstream/plugin.py                          |   6 +-
 src/buildstream/sandbox/_sandboxbuildboxrun.py     |   2 +-
 src/buildstream/storage/_filebaseddirectory.py     |   2 +-
 src/buildstream/testing/_cachekeys.py              |   2 +-
 .../testing/_sourcetests/source_determinism.py     |   4 +-
 .../testing/_sourcetests/track_cross_junction.py   |   2 +-
 src/buildstream/testing/_update_cachekeys.py       |   2 +-
 src/buildstream/testing/_utils/site.py             |   2 +-
 src/buildstream/testing/runcli.py                  |  10 +-
 src/buildstream/types.py                           |   2 +-
 src/buildstream/utils.py                           |  13 ++-
 tests/examples/developing.py                       |   2 +-
 tests/format/project.py                            |   2 +-
 tests/frontend/artifact_log.py                     |   4 +-
 tests/frontend/buildcheckout.py                    |  22 ++--
 tests/frontend/cross_junction_workspace.py         |   2 +-
 tests/frontend/fetch.py                            |   2 +-
 tests/frontend/init.py                             |   4 +-
 tests/frontend/large_directory.py                  |   2 +-
 tests/frontend/logging.py                          |   2 +-
 tests/frontend/mirror.py                           |  12 +-
 tests/frontend/progress.py                         |   2 +-
 tests/frontend/pull.py                             |  12 +-
 tests/frontend/push.py                             |   4 +-
 tests/frontend/rebuild.py                          |   4 +-
 tests/frontend/show.py                             |   4 +-
 tests/frontend/source_checkout.py                  |   4 +-
 tests/frontend/track.py                            |   6 +-
 tests/frontend/workspace.py                        |  24 ++--
 tests/integration/artifact.py                      |   2 +-
 tests/integration/manual.py                        |  12 +-
 tests/integration/script.py                        |  16 +--
 tests/integration/shell.py                         |   6 +-
 tests/integration/source-determinism.py            |   4 +-
 tests/integration/stack.py                         |   4 +-
 tests/integration/workspace.py                     |  16 +--
 tests/internals/storage_vdir_import.py             |  12 +-
 tests/internals/utils_save_atomic.py               |  10 +-
 tests/internals/yaml.py                            |   7 +-
 tests/plugins/loading.py                           |  21 +---
 tests/plugins/loading/not-found-elements.conf      |  15 +++
 tests/plugins/loading/not-found-sources.conf       |  15 +++
 tests/remoteexecution/junction.py                  |   4 +-
 tests/remoteexecution/workspace.py                 |  10 +-
 tests/sourcecache/cache.py                         |   2 +-
 tests/sources/bzr.py                               |   2 +-
 tests/sources/git.py                               |  34 +++---
 tests/sources/local.py                             |   6 +-
 tests/sources/patch.py                             |  12 +-
 tests/sources/previous_source_access.py            |   4 +-
 tests/testutils/filetypegenerator.py               |   2 +-
 tests/testutils/python_repo.py                     |   6 +-
 73 files changed, 427 insertions(+), 289 deletions(-)