summaryrefslogtreecommitdiff
path: root/src/buildstream/_platform/linux.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-03-31 09:09:17 +0200
committerbst-marge-bot <marge-bot@buildstream.build>2020-04-14 15:30:49 +0000
commitd75b0fc080d57e78aea9ed7908cc7b3af5ad6e01 (patch)
tree42c41fd8a3cd754011e2b3c0c82dba8d3b978e5e /src/buildstream/_platform/linux.py
parentafb35bb157ae02df5022f220c2e10dcd4e51d4ad (diff)
downloadbuildstream-d75b0fc080d57e78aea9ed7908cc7b3af5ad6e01.tar.gz
Drop concept of partially supported sandbox configuration
Allowing builds without affecting the cache key but disallowing push, when the sandbox configuration is not fully compatible, results in an inconsistent user experience and may lead to unexpected build issues. Especially as push is allowed or disallowed based on the sandbox available at the time of push, not at the time of build. The previous commit making build-uid and build-gid configuration optional allows each project to decide whether the sandbox is required to support UID/GID configuration or not.
Diffstat (limited to 'src/buildstream/_platform/linux.py')
-rw-r--r--src/buildstream/_platform/linux.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_platform/linux.py b/src/buildstream/_platform/linux.py
index c5192c86d..670cfc6b9 100644
--- a/src/buildstream/_platform/linux.py
+++ b/src/buildstream/_platform/linux.py
@@ -86,7 +86,7 @@ class Linux(Platform):
def _check_sandbox_config_bwrap(self, config):
from ..sandbox._sandboxbwrap import SandboxBwrap
- return SandboxBwrap.check_sandbox_config(self, config)
+ SandboxBwrap.check_sandbox_config(self, config)
def _create_bwrap_sandbox(self, *args, **kwargs):
from ..sandbox._sandboxbwrap import SandboxBwrap