mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-02 16:21:20 +00:00
Adding JSONSchema to CI scripts
jsonschema is added to the ci scripts and Dockerfile Signed-off-by: Archana <archana.madhavan@silabs.com> Signed-off-by: Asfandyar Orakzai <asfandyar.orakzai@silabs.com>
This commit is contained in:
parent
314380564c
commit
25876b8abb
@ -13,4 +13,6 @@ markupsafe < 2.1
|
|||||||
Jinja2 >= 2.10.1
|
Jinja2 >= 2.10.1
|
||||||
# Jinja2 >=2.10, <3.0 needs a separate package for type annotations
|
# Jinja2 >=2.10, <3.0 needs a separate package for type annotations
|
||||||
types-Jinja2
|
types-Jinja2
|
||||||
|
# jsonschema > 3.2.0 is not compatible with Python 3.5, force 3.2.0
|
||||||
|
jsonschema >= 3.2.0
|
||||||
|
types-jsonschema
|
||||||
|
@ -60,13 +60,10 @@ RUN apt-get update \
|
|||||||
pkg-config \
|
pkg-config \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Jinja2 is required for driver dispatch code generation.
|
# Jinja2 and jsonschema is required for driver dispatch code generation.
|
||||||
RUN python3 -m pip install \
|
RUN python3 -m pip install \
|
||||||
jinja2==2.10.1 types-jinja2
|
jinja2==2.10.1 types-jinja2 \
|
||||||
|
jsonschema==3.2.0 types-jsonschema
|
||||||
|
|
||||||
RUN python3 -m pip install \
|
|
||||||
jsonschema
|
|
||||||
|
|
||||||
# Build a static, legacy openssl from sources with sslv3 enabled
|
# Build a static, legacy openssl from sources with sslv3 enabled
|
||||||
# Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh)
|
# Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user