summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Drop Platform subclasses and BST_FORCE_BACKENDjuerg/sandbox-drop-bwrapJürg Billeter2020-06-037-184/+18
| | | | | With the use of buildbox-run on all platforms, there is no longer any platform-specific code in the Platform subclasses.
* Drop sandbox selection and BST_FORCE_SANDBOXJürg Billeter2020-06-037-112/+22
| | | | | | | buildbox-run is the only local sandbox and there are no plans to add other sandboxing backends in the future. New platforms can be supported by new buildbox-run implementations without requiring any changes in BuildStream.
* NEWS: Add note about dropping bwrap sandboxing backendJürg Billeter2020-06-031-0/+7
|
* doc/source/arch_sandboxing.rst: Update for buildbox-runJürg Billeter2020-06-031-33/+24
|
* linux.py: Remove unused can_crossbuild() and _uid/_gidJürg Billeter2020-06-031-26/+0
|
* Drop unused _fuse packageJürg Billeter2020-06-036-1460/+1
|
* sandbox: Remove unused root and scratch directoriesJürg Billeter2020-06-031-22/+0
|
* sandbox: Drop unused _mount.pyJürg Billeter2020-06-031-148/+0
|
* sandbox: Drop _use_cas_based_directory()Jürg Billeter2020-06-032-26/+2
| | | | It is always true.
* Drop SandboxBwrapJürg Billeter2020-06-031-511/+0
| | | | Replaced by buildbox-run.
* _platform: Drop maximize_open_file_limit()Jürg Billeter2020-06-033-64/+0
| | | | | Without the SafeHardlinks FUSE filesystem there is no longer a need to increase the open file limit.
* darwin.py: Update error messageJürg Billeter2020-06-031-3/+1
| | | | FUSE is no longer a blocker.
* linux.py: Drop bwrap supportJürg Billeter2020-06-031-26/+0
|
* tests: Drop bwrap-specific testsJürg Billeter2020-06-038-132/+1
|
* .gitlab-ci.yml: Drop bwrap jobJürg Billeter2020-06-031-7/+0
| | | | The bwrap sandbox will be removed.
* tests/integration/cachedfail.py: Do not skip test with buildbox-runJürg Billeter2020-06-031-1/+1
|
* Merge branch 'valentindavid/optimize-variables' into 'master'bst-marge-bot2020-06-035-65/+109
|\ | | | | | | | | Optimize variable flattening See merge request BuildStream/buildstream!1949
| * Optimize variable flatteningValentin David2020-06-035-65/+109
|/ | | | | | | | | | | | | | | | | Verifying for variables (all used variables defined and no cycle) is much faster than flattening them. It also uses much less memory. Only `bst show -f "%{vars}"` requires to flatten all variables. For other cases we can improve performance by only checking rather than flattening. Also flattening very nested variables could lead to very long lists of empty strings. The memory usage for flattening could be a lot bigger than the resulting value. Force flattening and caching every variable definitions can improve intermediate memory consumption and only consume memory of the size of the result. Finally, an optimization allowed inifinite cycles leading to segmentation fault. This was solved by simplifying the code.
* Merge branch 'traveltissues/update-overnight' into 'master'bst-marge-bot2020-06-031-2/+2
|\ | | | | | | | | update FD overnights See merge request BuildStream/buildstream!1953
| * Update target branch in FD overnightstraveltissues/update-overnightDarius Makovsky2020-06-021-2/+2
|/ | | | bst2 efforts are now concentrated on the `valentindavid/bst2` branch
* Merge branch 'tristan/link-element' into 'master'bst-marge-bot2020-06-0271-216/+630
|\ | | | | | | | | Add new core `link` element kind See merge request BuildStream/buildstream!1948
| * NEWS: Updated for breaking change of junction target removaltristan/link-elementTristan van Berkom2020-06-011-3/+4
| |
| * junctions: Remove all traces of the `target` optionTristan van Berkom2020-06-0115-167/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes: * The `target` feature from the junction plugin * Special case code in the loader for the `target` feature * The `target` related cases in tests/format/junctions.py This also adjusts the `target` related documentation in the `junction` element to suggest using a `link` element for the purpose of using a subproject junction configuration to access a common sub-subproject.
| * doc: Adding new `link` plugin to the core plugin indexTristan van Berkom2020-06-011-0/+1
| |
| * tests/format/link.py: Adding tests for the link elementTristan van Berkom2020-06-0160-0/+407
| |
| * link element: Adding support for new link elementTristan van Berkom2020-06-014-4/+160
| | | | | | | | | | | | This element acts as a symbolic link, it has no other configurations other than to specify the element (or junction) to which it refers to, either in the local project or in a subproject.
| * _loader/loader.py: Make collect_element_no_deps() publicTristan van Berkom2020-06-011-75/+78
|/ | | | | Within the _loader module, the LoadElement will need to use this in order to resolve links.
* Merge branch 'tristan/loader-fixes' into 'master'bst-marge-bot2020-05-301-2/+1
|\ | | | | | | | | _loader/loader.py: Remove useless line of code. See merge request BuildStream/buildstream!1946
| * _loader/loader.py: Remove useless line of code.Tristan van Berkom2020-05-301-2/+1
|/ | | | | | | | | We were redundantly calling Loader._load_file() directly before calling Loader.get_loader(), even though Loader.get_loader() implicitly loads the file anyway. To pass tests, we needed to fix get_loader() to pass provenance along to Loader._load_file().
* Merge branch 'tristan/remove-loader-no-progress-object' into 'master'bst-marge-bot2020-05-302-18/+12
|\ | | | | | | | | loader: removing the NO_PROGRESS object See merge request BuildStream/buildstream!1947
| * loader: removing the NO_PROGRESS objecttristan/remove-loader-no-progress-objectTristan van Berkom2020-05-302-18/+12
|/ | | | | | | | | | | While adding a mock task object to track progress in some loader tests in commit 17144d84c2b63daf6e3aa9b42c6c773f134e8660, a new `_NO_PROGRESS` object was added as an explicit marker to denote that progress information should not be reported. This complicates the code, None should be a sufficient value for not reporting progress, while still permitting mock task objects to capture progress if desired.
* Merge branch 'tristan/version-specific-config' into 'master'bst-marge-bot2020-05-293-3/+50
|\ | | | | | | | | Support version specific configuration files See merge request BuildStream/buildstream!1941
| * doc/source/using_config.rst: Document support for version specific config files.Tristan van Berkom2020-05-291-0/+11
| |
| * tests/internals/context.py: Test correct config file is chosen.Tristan van Berkom2020-05-291-0/+28
| |
| * _context.py: Support parallel installations of BuildStreamTristan van Berkom2020-05-291-3/+11
|/ | | | | | | | | | Allow users to keep separate buildstream.conf files in their XDG_CONFIG_HOME for separate BuildStream versions, in case they have BuildStream 1 and 2 installed. Like other major version safeguards and warnings, this new addition also supports future major versions if they should appear.
* Merge branch 'bschubert/resolve-public-variables' into 'master'bst-marge-bot2020-05-295-14/+48
|\ | | | | | | | | | | | | element.py: Always expand public data's variables Closes #1310 See merge request BuildStream/buildstream!1943
| * element.py: Always expand public data's variablesBenjamin Schubert2020-05-295-14/+48
|/ | | | | | | | | | | | | | | | | This fixes a bug introduced by d7d18c1a2e454c507afd9e1d3f1358639dd43871, where public data integration commands and others would never get their data expanded and would thus fail to run. The previous however revelead a previous bug, where variables values in public data of elements would not be part of the cache key of an element or it's reverse dependencies, and thus, on variable change, rebuilds would not happen when they would have been needed. This ensures that all the public data is always resolved and part of the element's cache key. This however will bring a rebuild of an element whenever its integration commands variables change, which is simpler to handle than to try to push that responsibility on reverse dependencies, since public data can contain plugin-defined values.
* Merge branch 'juerg/cas-send-directory' into 'master'bst-marge-bot2020-05-281-3/+5
|\ | | | | | | | | cascache.py: Drop unnecessary FindMissingBlobs from _send_directory() See merge request BuildStream/buildstream!1944
| * cascache.py: Drop unnecessary FindMissingBlobs from _send_directory()juerg/cas-send-directoryJürg Billeter2020-05-281-3/+5
|/ | | | | | buildbox-casd `UploadMissingBlobs` will call `FindMissingBlobs` before the actual upload. Having BuildStream call `FindMissingBlobs` as well adds unnecessary overhead.
* Merge branch 'juerg/sast' into 'master'bst-marge-bot2020-05-281-0/+1
|\ | | | | | | | | .gitlab-ci.yml: Configure SAST analyzers See merge request BuildStream/buildstream!1939
| * .gitlab-ci.yml: Configure SAST analyzersJürg Billeter2020-05-281-0/+1
|/ | | | | Disable flawfinder and eslint jobs as this repository contains no C or JavaScript code to be analyzed.
* Merge branch 'juerg/expandsandbox' into 'master'bst-marge-bot2020-05-285-31/+52
|\ | | | | | | | | | | | | element.py: Expand variables in sandbox config Closes #1303 See merge request BuildStream/buildstream!1938
| * tests/integration/sandbox.py: Test variable expansion in sandbox configjuerg/expandsandboxJürg Billeter2020-05-283-0/+25
| |
| * element.py: Expand variables in sandbox configJürg Billeter2020-05-281-3/+5
| |
| * Move sandbox YAML processing from Element to SandboxConfigJürg Billeter2020-05-282-29/+23
|/
* Merge branch 'tristan/junction-docs-touchup' into 'master'bst-marge-bot2020-05-281-4/+4
|\ | | | | | | | | doc/source/format_declaring.rst: Fixing spelling mistake See merge request BuildStream/buildstream!1940
| * doc/source/format_declaring.rst: Fixing spelling mistakeTristan van Berkom2020-05-281-4/+4
|/ | | | | Making some examples more consistent with regards to indentation of YAML, and fixing "recursice -> recursive" spelling mistake.
* Merge branch 'tristan/junction-plugin-origin' into 'master'bst-marge-bot2020-05-2817-237/+774
|\ | | | | | | | | Introduce new `junction` plugin origin See merge request BuildStream/buildstream!1935
| * doc/source/format_project.rst: Documenting the junction plugin origin.tristan/junction-plugin-originTristan van Berkom2020-05-281-0/+63
| |
| * tests/plugins/loading.py: Adding tests for junction plugin originTristan van Berkom2020-05-285-0/+193
| |