mirror of https://github.com/ARMmbed/mbed-os.git
Move CI build requirements to their own file so CMake doesn't get confused about them. They weren't really needed anyway for the CMake build.
parent
44ebbbc994
commit
31d8558d8c
|
@ -49,7 +49,7 @@ RUN set -x \
|
||||||
&& pip3 install -r requirements.txt \
|
&& pip3 install -r requirements.txt \
|
||||||
&& : # last line
|
&& : # last line
|
||||||
|
|
||||||
COPY tools/test/requirements.txt .
|
COPY tools/requirements-ci-build.txt .
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& pip3 install -r requirements.txt \
|
&& pip3 install -r requirements.txt \
|
||||||
&& : # last line
|
&& : # last line
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# This file contains the requirements needed to run CI builds for Mbed OS.
|
||||||
|
# It installs flashing support through the mbed tools packages and also the mbedhtrun test runner.
|
||||||
|
mbed-tools
|
||||||
|
mbed-host-tests
|
||||||
|
mbed-greentea
|
||||||
|
mbed-ls
|
||||||
|
mbed-os-tools
|
|
@ -2,9 +2,4 @@ PrettyTable<=1.0.1; python_version < '3.6'
|
||||||
prettytable>=2.0,<3.0; python_version >= '3.6'
|
prettytable>=2.0,<3.0; python_version >= '3.6'
|
||||||
future>=0.18.0,<1.0
|
future>=0.18.0,<1.0
|
||||||
jinja2>=2.11.3
|
jinja2>=2.11.3
|
||||||
intelhex>=2.3.0,<3.0.0
|
intelhex>=2.3.0,<3.0.0
|
||||||
mbed-tools
|
|
||||||
mbed-host-tests
|
|
||||||
mbed-greentea
|
|
||||||
mbed-ls
|
|
||||||
mbed-os-tools
|
|
Loading…
Reference in New Issue