summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* pushreceive.py: Abstract the buffer_James Ennis2018-06-071-9/+8
|
* pushreceive.py: Ensure huge artifacts are not pushedJames Ennis2018-06-072-6/+32
|
* pushreceive.py: Add comments to code and name variables more sensiblyJames Ennis2018-06-071-1/+13
|
* push.py: Add tests to test remote cache expiryJames Ennis2018-06-071-1/+184
| | | | | | | | The tests include a new environment variable: BST_CACHE_QUOTA. This variable is used in receive_main() in pushreceive.py. Test names: test_artifact_expires, test_large_artifact_is_not_cached_remotely test_recently_pulled_artifact_does_not_expire: marked as xfail until we implement LRU expiry in remote share
* element_generators.py: Add a utility function to create arbitrary size elementsJames Ennis2018-06-072-0/+41
| | | | | | New file consisting of functions that allow us to generate elements on the fly __init__.py now includes create_element_size()
* pushreceive.py: Remove LRP artifacts from cache, introduce clean_up_cache()James Ennis2018-06-071-3/+54
| | | | This fixes #136
* pushreceive.py: Ensure there is a repopathJames Ennis2018-06-071-0/+3
|
* _ostree.py: Introduce _list_all_refs() and list_artifacts()Tristan Maat2018-06-071-0/+44
| | | | | The unused list_remote_refs() function has also been removed as part of this commit.
* _ostree.py: Reintroduce remove()Tristan Maat2018-06-071-0/+36
|
* tests/completions: Added test case for custom `bst help` completionsTristan Van Berkom2018-06-071-0/+13
|
* _frontend/cli.py: Allow specifying commands in `bst help`Tristan Van Berkom2018-06-072-13/+67
| | | | | | o This supports deeply nested commands as well as shallow commands o Automated support for bash completions included
* Implement bst helpEd Baunton2018-06-072-3/+16
|
* Make `bst help` workEd Baunton2018-06-071-0/+4
|
* _frontend/cli.py: Try to autocomplete element paths when running from a ↵Chandan Singh2018-06-062-5/+24
| | | | | | | | subdirectory The previous commit added support for running bst commands form subdirectories of the project root. Make autocomplete also work in a similar way.
* _project.py: Allow running bst commands from subdirectories of project rootChandan Singh2018-06-065-2/+50
| | | | | | | | When initializing the project, BuildStream will continue searching for project.conf in parent directories in case it is not found in the current directory. Fixes #368.
* _loader/loader.py: Report element-path when failing to load elementsChandan Singh2018-06-061-1/+17
| | | | | | | | | | | | | | | | | It can be confusing, especially to new BuildStream users, that the CLI expects targets to be specified relative to element-path and not the current directory. Previously, the CLI would give a generic message stating that the file could not be found but it was not obvious that it was looking in the `element-path` directory. Explicitly print the element-path in the summary. Also, try to check if the specified element exists in the elements directory and print a hint to use the element-path relative paths if that's the case. Fixes #396. This is is also related to #341. This commit aims to tackle that issue by trying to educate users about element-path.
* make build element: Add support for PREFIXTristan Van Berkom2018-06-061-2/+2
|
* NEWS: Mentioning new `make` build elementTristan Van Berkom2018-06-061-0/+2
|
* make plugin: Ammended documentation to note it's since version.Tristan Van Berkom2018-06-061-0/+4
|
* _versions.py: Bump format version to 9Tristan Van Berkom2018-06-061-1/+1
| | | | For addition of new `make` plugin
* doc/source/authoring.rst: Adding `make` element to the docsTristan Van Berkom2018-06-061-0/+1
|
* Add a kind for MakeEd Baunton2018-06-065-0/+141
|
* _frontend/app.py: Remove unused variable at global scopeTristan Van Berkom2018-06-061-1/+0
|
* _artifactcache/pushreceive.py: Add Click type for CLI argument 'repo'Chandan Singh2018-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The CLI for `bst-artifact-receive` expects a `repo` argument, which is supposed to be a directory, but Click currently expects it to be just any string. This results in stack traces like the one below when the argument provided is not a directory: $ ~/.local/bin/bst-artifact-receive --pull-url http://foo foobaz Traceback (most recent call last): File "/root/.local/bin/bst-artifact-receive", line 8, in <module> sys.exit(receive_main()) ... File "/src/buildstream/buildstream/_artifactcache/pushreceive.py", line 581, in __init__ self.repo.open(None) GLib.Error: g-io-error-quark: /src/buildstream/43fref: opendir(/src/buildstream/foobaz): No such file or directory (1) Add types for this argument such that it throws better error messages when it receives bad arguments. With the Click types added, it will instead fail with messages like these: $ ~/.local/bin/bst-artifact-receive --pull-url http://foo foobaz Usage: bst-artifact-receive [OPTIONS] REPO Error: Invalid value for "repo": Directory "foobaz" does not exist. $ ~/.local/bin/bst-artifact-receive --pull-url http://foo setup.py Usage: bst-artifact-receive [OPTIONS] REPO Error: Invalid value for "repo": Directory "setup.py" is a file. Fixes #409.
* utils.py: Correcting a typo in safe_remove's commentPhillip Smyth2018-06-051-1/+1
|
* _sandboxbwrap.py: Fix post-bwrap cleanup behaviourGökçen Nurlu2018-06-051-1/+1
| | | | | | | | | The cleanup was supposed not to remove folders (`/dev`, `/tmp`, `/proc`) if they already existed before bwrap but it did the opposite: it tried to remove them if they existed before, and didn't remove them if they were created during bwrap. This was caused by a `not` clause, and this removes it. Fixes #379
* Add test to verify cleanup behaviour after bwrapGökçen Nurlu2018-06-054-0/+51
| | | | | | This adds `sandbox-bwrap/test-cleanup.bst` to test the cleanup behaviour in `sandbox/_sandboxbwrap.py`: There already exists a non-empty `/tmp` folder and BuildStream should not try to remove it after a command is executed with bwrap.
* tests/context/context.py: Test setting XDG_CACHE_HOMETristan Maat2018-06-051-0/+17
|
* _context.py: Normalize user-defined pathsTristan Maat2018-06-051-0/+1
|
* _artifactcache/ostreecache.py: Fix artifact cache initialization result tupleAntoine Wacheux2018-05-311-1/+1
| | | | | In case of failure, the tuple contained 4 elements instead of 3, causing BuildStream to crash.
* .gitignore: Ignore autogenerated docsalbfan2018-05-251-0/+8
|
* Merge branch 'master' of https://gitlab.com/BuildStream/buildstreamtoscalix2018-05-241-0/+16
|\ | | | | | | | | | | | | | | bst_task.md : default template also as option. This is the default template. It is neccessary to include it in this directory to have it as option which is required in special cases. This fix issue https://gitlab.com/BuildStream/nosoftware/alignment/issues/12
| * junction.py: Include note regarding explicit trackingJames Ennis2018-05-231-0/+16
| |
* | bst_task.md: default template also as optiontoscalix2018-05-241-0/+17
|/
* correction :toscalix2018-05-221-1/+1
|
* correction :toscalix2018-05-221-4/+4
|
* bst merge request templatetoscalix2018-05-221-0/+19
|
* bst bug templatetoscalix2018-05-221-0/+36
|
* NEWS: Add item for element redirection214-filter-workspacingJonathan Maw2018-05-211-0/+10
|
* Redirect elements when performing tracking and workspace commandsJonathan Maw2018-05-173-12/+54
| | | | i.e. when an element is specified, it may be replaced with its source element.
* filter.py: Redirect _get_source_element() calls to its build dependJonathan Maw2018-05-171-0/+11
| | | | | | We do this because trying to open/close/reset a workspace on a filter element doesn't make sense, but is probably meant for the element that the filter element filters.
* element.py: Add _get_source_element() methodJonathan Maw2018-05-171-0/+12
|
* tests: Add track tests for the filter elementJonathan Maw2018-05-171-1/+288
|
* tests: Add workspace tests for filtersJonathan Maw2018-05-171-0/+70
|
* element.py: Fix consistency of workspaced elements when ref is missingChandan Singh2018-05-172-9/+42
| | | | Fixes #393.
* _frontend/linuxapp.py: Fixed crash in previous commitTristan Van Berkom2018-05-171-1/+1
| | | | | Commit e023beb56b180316a58f409d48f158e9dc1ece95 introduced a crash with an invalid access to os.environ, this fixes it.
* _frontend: Notify failures when on linuxtristan/platform-appTristan Van Berkom2018-05-173-1/+75
| | | | | | | | Opens the door to platform specific frontend features, and implements a platform specific "notify" method. This is based on Valentin David's patch on merge request 447, and this fixes issue #385.
* doc/source/examples_flatpak_autotools.rst: Enhanced exampleTristan Van Berkom2018-05-161-12/+117
| | | | | | | | | | | This has now changed to: * Have explanations of the project.conf and each element in the example, explaining what they are for * Have links into the reference for the specific features this example uses, such that the reader can get familiar with the reference manual from example windows
* doc/examples/flatpak-autotools/README.md: RemovingTristan Van Berkom2018-05-161-28/+0
| | | | | This is redundant with doc/source/examples_flatpak_base.rst, lets please only document things once.
* doc/source/examples.rst: Rearranged ToC for examplesTristan Van Berkom2018-05-162-29/+36
| | | | We want one example per file, not a huge file full of different examples.