Commits on Source 15
-
Tom Pollard authored
Providing a remote will limit build's pull/push remote actions to the given remote specifically, ignoring those defined via user or project configuration.
-
Tom Pollard authored
Add --remote, -r option to bst build, inline with pull & push See merge request !1119
-
Daniel Silverstone authored
In order to support use of roaring bitmaps in the loader, we need to depend on it here. Signed-off-by:
Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-
Daniel Silverstone authored
The dependency cache in LoadElement causes the peak RAM consumption of the loader to be exceedingly large, upwards of 25GB for a test of a Debian stack. By switching from the old dict cache to a roaring bitmap based cache, we reduce the cost of the loader cache in RAM terms to around 5.5GB for the same stack, which makes it plausible for the short term. Signed-off-by:
Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-
Benjamin Schubert authored
Switch to roaring bitmaps for the loader dependency caches See merge request !1128
-
Jonathan Maw authored
-
Jonathan Maw authored
-
Jonathan Maw authored
The unix specification for unix sockets only allocates ~100 characters for the length of the path. This may be longer than the path for a CI runner, or the path to a user's buildstream directory.
-
Jonathan Maw authored
Add pre-merge tests that use a WSL runner Closes #852 See merge request !1108
-
The licence for roaringbitmap was not compatible. pyroaring is a similar project which is MIT licensed and is slightly better on memory too. Signed-off-by:
Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-
Benjamin Schubert authored
-
Benjamin Schubert authored
loadelement.py: Switch from roaringbitmap to pyroaring Closes #899 See merge request !1133
-
William Salmon authored
The 'wallclock-us' is a option that we thought we already had.
-
William Salmon authored
Add more log formatting options See merge request !1125
-
Phil Dawson authored
We want external plugins to be able to make use of the core testing utils. This commit exposes the basic utilities which are currently in use in bst-external plugins. If necessary, more utilities could be exposed in the future. Moves the following files from tests/testutils/ to buildstream/plugintestingutils/: o runcli.py o integration.py As part of this, this commit makes the following changes to runcli.py and integration.py: o runcli.py: Fix linting errors o runcli.py: Add user facing documentation o Integration.py: Add user facing documentation