diff options
author | Jürg Billeter <j@bitron.ch> | 2020-03-05 11:20:19 +0100 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2020-03-05 12:13:05 +0100 |
commit | 62ff53291ede4b0f8a5fb913b2989787b79709ca (patch) | |
tree | aad4a72dd841d1397207017b06bb695679ddcac6 /src/buildstream/sandbox/_sandboxbuildboxrun.py | |
parent | 71179f88b93ff06543ae2b3b40c09801bca46552 (diff) | |
download | buildstream-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.py | 2 |
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)) |