Skip to content
Snippets Groups Projects
Commit ace18ecf authored by Jürg Billeter's avatar Jürg Billeter
Browse files

HACK: _platform/linux.py: Use BuildBox sandbox backend

parent c939741f
No related branches found
No related tags found
Loading
Pipeline #36550522 failed
...@@ -22,7 +22,7 @@ import shutil ...@@ -22,7 +22,7 @@ import shutil
import subprocess import subprocess
from .. import utils from .. import utils
from ..sandbox import SandboxDummy from ..sandbox import SandboxDummy, SandboxBuildBox
from . import Platform from . import Platform
...@@ -60,7 +60,8 @@ class Linux(Platform): ...@@ -60,7 +60,8 @@ class Linux(Platform):
if not self._local_sandbox_available: if not self._local_sandbox_available:
return self._create_dummy_sandbox(*args, **kwargs) return self._create_dummy_sandbox(*args, **kwargs)
else: else:
return self._create_bwrap_sandbox(*args, **kwargs) # return self._create_bwrap_sandbox(*args, **kwargs)
return SandboxBuildBox(*args, **kwargs)
def check_sandbox_config(self, config): def check_sandbox_config(self, config):
if not self._local_sandbox_available: if not self._local_sandbox_available:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment