summaryrefslogtreecommitdiff
path: root/src/buildstream/sandbox/_sandboxbuildboxrun.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-03-05 11:20:19 +0100
committerJürg Billeter <j@bitron.ch>2020-03-05 12:13:05 +0100
commit62ff53291ede4b0f8a5fb913b2989787b79709ca (patch)
treeaad4a72dd841d1397207017b06bb695679ddcac6 /src/buildstream/sandbox/_sandboxbuildboxrun.py
parent71179f88b93ff06543ae2b3b40c09801bca46552 (diff)
downloadbuildstream-juerg/reapi-platform.tar.gz
_sandboxreapi.py: Sort platform properties by namejuerg/reapi-platform
This is required by the REAPI specification.
Diffstat (limited to 'src/buildstream/sandbox/_sandboxbuildboxrun.py')
-rw-r--r--src/buildstream/sandbox/_sandboxbuildboxrun.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/sandbox/_sandboxbuildboxrun.py b/src/buildstream/sandbox/_sandboxbuildboxrun.py
index b7fc7a6d5..d0907a713 100644
--- a/src/buildstream/sandbox/_sandboxbuildboxrun.py
+++ b/src/buildstream/sandbox/_sandboxbuildboxrun.py
@@ -188,7 +188,7 @@ class SandboxBuildBoxRun(SandboxREAPI):
raise SandboxError("buildbox-run failed with returncode {}".format(returncode))
def _supported_platform_properties(self):
- return {"unixUID", "unixGID", "network"}
+ return {"OSFamily", "ISA", "unixUID", "unixGID", "network"}
def _warn(self, msg):
self._get_context().messenger.message(Message(MessageType.WARN, msg))