
On Tue, Aug 29, 2023 at 04:37:10PM +0200, Andrejs Cainikovs wrote:
Some TI boards utilizes `ti-board-config` via binman device tree node, which when built via binman, triggers schema validation for board specific yaml configuration files.
This change adds jsonschema python module to CI Docker image, which allows these targets to be built by CI without errors.
Signed-off-by: Andrejs Cainikovs andrejs.cainikovs@toradex.com
tools/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+)
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 3d2b64a355f..2f3121ffcf6 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -98,6 +98,7 @@ RUN apt-get update && apt-get install -y \ python2.7 \ python3 \ python3-dev \
- python3-jsonschema \ python3-pip \ python3-pyelftools \ python3-sphinx \
Interesting. How exactly are you using these CI images? We have tools/buildman/requirements.txt now to cover the newly-added modules in CI, as we call pip on that. But, it's not being used in the prepopulate the pip cache stage in the Dockerfile. And, I'm not immune to the idea that we should instead be installing the distro package here.