summaryrefslogtreecommitdiff
path: root/src/buildstream/_stream.py
diff options
context:
space:
mode:
authorDarius Makovsky <traveltissues@protonmail.com>2019-08-19 13:20:38 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-09-24 15:58:25 +0000
commitb99451672bb4e9b6bb5c1d0583bc2608c56a3934 (patch)
treed8835aa797a64c9841c423e876f70d329ff69cbc /src/buildstream/_stream.py
parentb9e2af22bc94d108a27fc9a40f698b4822c7118e (diff)
downloadbuildstream-b99451672bb4e9b6bb5c1d0583bc2608c56a3934.tar.gz
Remove workspace mounting for sandboxes
Workspaces will be handled via the workspace source plugin methods. This does not currently support reflecting build artifacts in the open workspace. tests: Mark incremental workspace builds as xfail (strict)
Diffstat (limited to 'src/buildstream/_stream.py')
-rw-r--r--src/buildstream/_stream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_stream.py b/src/buildstream/_stream.py
index 83db24d94..75b3dd84e 100644
--- a/src/buildstream/_stream.py
+++ b/src/buildstream/_stream.py
@@ -1528,7 +1528,7 @@ class Stream():
element_source_dir = self._get_element_dirname(directory, element)
if list(element.sources()):
os.makedirs(element_source_dir)
- element._stage_sources_at(element_source_dir, mount_workspaces=False)
+ element._stage_sources_at(element_source_dir)
# Create a tarball from the content of directory
def _create_tarball(self, directory, tar_name, compression):