Loading
Commits on Source 87
-
Previously, it merely tested that buildstream did not fall other, rather than whether it did anything useful.
-
Previously, there was no way of detecting whether fetching happened, as an element with an open workspace will not be fetched.
-
Jürg Billeter authored
Add tests to cover reinstated support for guessing targets See merge request !1042
-
Jürg Billeter authored
There is no reason to disallow guess_element() for bst build --all.
-
_versions.py: Bump format version
-
Jürg Billeter authored
_frontend/cli.py: Use new methods. Based on patches by Phillip Smyth.
-
Jürg Billeter authored
This filters out junctions from the list of targets.
-
Jürg Billeter authored
Junctions cannot be built, pulled, or pushed. Specifying a junction on the command line for these commands will result in an error. However, junctions may be in the list of default targets, so they need to be ignored for build, pull, and push commands.
-
Jürg Billeter authored
-
-
Jürg Billeter authored
-
Jürg Billeter authored
-
Jürg Billeter authored
Test that `bst build` does not fail in a project where the list of default targets includes a junction (junctions cannot be built).
-
-
Jürg Billeter authored
Add support for default targets See merge request !925
-
Tristan Van Berkom authored
Don't require the interest to be registered, just discard any interest, this function just sets a bit in a mask, and is not intended to maintain a balance like the reserve() function is.
-
Tristan Van Berkom authored
When running any session that has Queues which require Resource.CACHE, check if our loaded estimated size exceeds the quota, and if so; lock the Resource.CACHE resource exclusively right away and run an exclusive initial cache size job. This ensures we cleanup first before doing anything which might add to the cache at startup time, if deemed needed. This is a partial fix for issue #737
-
Tristan Van Berkom authored
In order to test when core activities occur by parsing the stderr in tests, we should make the messages conform more. At the same time, this restores alignment of columns in core messages with the element processing related messages. Also, _scheduler/scheduler.py is updated to make it's activity names conform to the (current) 5 character limit for the sake of alignment. The tests/frontend/logging.py test gets it's regexes updated for the log lines it checks for in stderr.
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
Cache management fixes See merge request !1091
-
Tristan Van Berkom authored
The artifact cache emits messages, and we want to allow that in preflight.
-
Tristan Van Berkom authored
We can streamline this call to os.statvfs() in a few places.
-
Tristan Van Berkom authored
This will benefit from a better UtilError being raised, and and turns the artifact cache's local function into a one liner. The loop which finds the first existing directory in the given path has been removed, being meaningless due to the call to os.makedirs() in ArtifactCache.__init__(). The local function was renamed to _get_cache_volume_size() and no longer takes any arguments, which is more suitable for the function as it serves as a testing override surface for unittest.mock(). The following test cases which use the function to override the ArtifactCache behavior have been updated to use the new overridable function name: tests/artifactcache/cache_size.py tests/artifactcache/expiry.py
-
Tristan Van Berkom authored
A simple object which creates a snapshot of current usage statistics for easy reporting in the frontend.
-
Tristan Van Berkom authored
A frontend facing API for obtaining usage statistics. I would have put this on Stream instead, but the Context seems to be the de facto place for looking up the artifact cache in general so let's put it here.
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
This also adds some comments around the main status bar heading rendering function.
-
Tristan Van Berkom authored
Added some useful status messages when: * Calculating a new artifact cache usage size * Starting a cleanup * Finishing a cleanup Also enhanced messaging about what was cleaned up so far when aborting a cleanup.
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
Updates the known cache size in the main process while the cleanup process is ongoing, so that the status indicators update live while the cleanup happens.
-
Tristan Van Berkom authored
This seems to have been copy/pasted from cascache, and documents the function to possibly return None if defer_prune was specified, but this function does not expose defer_prune.
-
Tristan Van Berkom authored
Cache management logging enhancements See merge request !1105
-
James Ennis authored
profile_start() and profile_end() calls have been incorporated into Scheduler.run()
-
James Ennis authored
profile_start() and profile_end() calls have been added to Stream.load_selection()
-
James Ennis authored
-
James Ennis authored
Add new 'scheduler' and 'load-selection' profiling topics See merge request !1088
-
Tristan Van Berkom authored
Instead only rely on the headroom to be enough to protect against out of space conditions. The headroom can become configurable as a separate step is required. The changes to achieve this are: * Rename ArtifactCache.has_quota_exceeded() to ArtifactCache.full(). * ArtifactCache.full() now also reports True if the available space on the artifact cache volume is smaller than the headroom. This ensures jobs get triggered to cleanup the cache when reaching the end of the disk. * When loading the artifact quota, it is now only an error if the quota exceeds the overall disk space, not if it does not fit in the available space. It is still a warning if the quota does not fit in the available space on the artifact cache volume. * Updated scheduler.py and buildqueue.py for the API rename * tests: Updated the artifactcache/expiry.py test for its expectations in this regard. Added a new test to test an error when quota was specified to exceed total disk space, and adjusted the existing tests to expect a warning when the quota does not fit in the available space. This fixes issue #733 and #869. -
Tristan Van Berkom authored
_artifactcache.py: Don't require the quota to be available on disk. Closes #869 and #733 See merge request !1106
-
Previously, one had to manually install `click-man` package, and remember to run the correct command. Now, we can simply run `tox -e man` to update the man pages.
-
Notable changes: * New `source` and `artifact` command groups * Man pages corresponding to obsolete commands, that were marked as hidden in Click, have now been removed. Fixes #881.
-
Simplify our docs, by requesting users to run `tox -e man` to update man pages, instead of manually installing `click-man` and running the command manually.
-
If the `man` directory is empty, then it won't be copied in the source distribution, and `list_man_pages()` will throw an exception when trying to list files in a non-existent directory. This prevents us from installing the BuildStream package when the man pages are not there. The most common use-case for this is when we want to re-generate the man pages but want to install the package before re-generating them.
-
Tristan Van Berkom authored
Generate man pages using tox & update them Closes #880 and #881 See merge request !1107
-
Angelos Evripiotis authored
-
Angelos Evripiotis authored
Now that 'bst track' is obsolete, change guidance to refer to the replacement 'bst source track' instead.
-
Angelos Evripiotis authored
Now that 'bst fetch' is obsolete, change guidance to refer to the replacement 'bst source fetch' instead.
-
Angelos Evripiotis authored
Fixup refs to 'bst track' and 'bst fetch' See merge request !1086
-
Tom Pollard authored
use_artifact_config added as an optional default arg, allowing for loading of given elements artifact remote config.
-
Tom Pollard authored
Provide bst shell --use-buildtree the ability to attempt to acquire missing buildtrees, given respective option, user pull-buildtree context and remote availability. _frontend/cli.py: Refactor logic for determining --use-buildtree option with given opportunity to attempt pulling a non-local buildtree. Element loaded with artifact_config to allow remote querying. _stream.py: With given user option and element state, construct PullQueue to fetch remote buildtree. Continue or Error without buildtree if cannot be attained. tests/integration/build-tree.py: Update to support new usecases
-
Tom Pollard authored
Download buildtrees on demand for bst shell --use-buildtree Closes #829 See merge request !1050
-
Abderrahim Kitouni authored
This is needed since 0f2bc375
-
Abderrahim Kitouni authored
This is needed since 629a6e52, and was lost in the conversion to requirements.in
-
Javier Jardón authored
requirements/requirements.in: update minimum versions Closes #884 See merge request !1114
-
Job can complete before we return from `Job.span()` to `Scheduler._spawn_job()`, so that `_active_jobs` would not yet contain the job. This would print a stack on the console and try to run a second time the job which can have unexpected effects. In order to reproduce the issue, in `buildstream/_scheduler/jobs/job.py`, in `Job.spawn`, add a call to `time.sleep()` right before call to `asyncio.get_child_watcher()`. This fixes issue #857.
-
Jürg Billeter authored
Fix crash when spawned job completes very fast Closes #857 See merge request !1095
-
Fixes #882.
-
Jürg Billeter authored
Fix type of error codes in CAS server Closes #882 See merge request !1099
-
Fixes #873
-
Jürg Billeter authored
Make sure testing cache directory exists Closes #873 See merge request !1092
-
Angelos Evripiotis authored
This is a breaking change, as it affects behaviour that people might be relying on. An entry has been added to NEWS. As proposed on the mailing list, this change removes the unconditional prompts on: o: bst workspace reset o: bst workspace close --remove-dir If interactive, these commands would always interrupt you with a prompt like this: This will remove all your changes, are you sure? This seems like it may just save someone's work some time. It may also condition folks to hit 'y' quickly without thinking. This change also makes the non-interactive behaviour consistent with the interactive behaviour in the default case. There is also the case of the prompt configured by 'really-workspace-close-project-inaccessible', which may be tackled in later work. This change also removes the new config options to suppress those prompts, and their associated news entry. The relevant bit of the mailing list conversation is here: https://mail.gnome.org/archives/buildstream-list/2018-December/msg00106.html The issue to make interactive and non-interactive behaviour consistent is here: #744 -
Angelos Evripiotis authored
BREAK:remove unconditional 'are you sure?' prompts See merge request !1061
-
Dor Askayo authored
Also bump the element's version so cached artifacts would be invalidated. Fixes #883
-
James Ennis authored
filter.py: don't recurse when staging dependencies Closes #883 See merge request !1110
-
Chandan Singh authored
`click-man` versions < 0.3.0 do not properly support multiple entrypoints. Since this was added to `tox` after `0.3.0` was released, `tox` should never be pulling older versions. But, let's add it here for documentation purposes. See !1107 (comment 135187046) for some background on this.
-
Chandan Singh authored
tox.ini: Specify minimum version of click-man See merge request !1120
-
We use output of `git --version` to determine if we can run some tests that rely on features from newer git versions. Usually, we expect the output to be like: git version 2.17.2 On some platforms, like MacOS, there could be a suffix after the version string, so that it looks something like: git version 2.17.2 (Apple Git-113) This causes things to fail like so: ValueError: invalid literal for int() with base 10: '2 (Apple Git-113)\n' Fix logic around `HAVE_OLD_GIT` such that we split the output of `git --version` without limit on how many times we split. Previously we used to split only twice so the suffixes like `(Apple Git-113)` are not part of the parsed version. -
Chandan Singh authored
testutils/site.py: Support parsing more exotic git versions See merge request !1118
-
Benjamin Schubert authored
This removes the need for the 'Dependency' list to then be matched with the corresponding LoadElement and will allow iterating the graph more easily
-
Benjamin Schubert authored
This simplifies the loading
-
Benjamin Schubert authored
Cleanup loader by linking LoadElements sooner See merge request !1122
-
-
Phil Dawson authored
tests/cachekey: Test cache keys are independent of target elements See merge request !1123
-
James Ennis authored
-
James Ennis authored
-
James Ennis authored
Improve our filter documentation Closes #278 See merge request !1112
-
James Ennis authored
This patch also uncovered the fact that our test_filter_deps_ok() test has been inaccurate. Thus the element built in this test (deps-permitted.bst) has been modified so that it build depends on the input.bst element, as it should. tests/filter.py: Ensure deps_ok test passes
-
James Ennis authored
Fail when we explictly try to include/exclude non-existent domains in a filter element See merge request !1117
-
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
This change is related to #222
-
Jonathan Maw authored
This change is related to #222
-
Jonathan Maw authored
Opening fails, and doing it right is pretty damn complicated.
-
Jonathan Maw authored