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
No related merge requests found
Pipeline #36550522 failed
......@@ -22,7 +22,7 @@ import shutil
import subprocess
from .. import utils
from ..sandbox import SandboxDummy
from ..sandbox import SandboxDummy, SandboxBuildBox
from . import Platform
......@@ -60,7 +60,8 @@ class Linux(Platform):
if not self._local_sandbox_available:
return self._create_dummy_sandbox(*args, **kwargs)
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):
if not self._local_sandbox_available:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment