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.

pull/15339/head
Jamie Smith 2022-05-08 10:53:00 -07:00 committed by Jay Sridharan
parent 44ebbbc994
commit 31d8558d8c
3 changed files with 9 additions and 7 deletions

View File

@ -49,7 +49,7 @@ RUN set -x \
&& pip3 install -r requirements.txt \
&& : # last line
COPY tools/test/requirements.txt .
COPY tools/requirements-ci-build.txt .
RUN set -x \
&& pip3 install -r requirements.txt \
&& : # last line

View File

@ -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

View File

@ -2,9 +2,4 @@ PrettyTable<=1.0.1; python_version < '3.6'
prettytable>=2.0,<3.0; python_version >= '3.6'
future>=0.18.0,<1.0
jinja2>=2.11.3
intelhex>=2.3.0,<3.0.0
mbed-tools
mbed-host-tests
mbed-greentea
mbed-ls
mbed-os-tools
intelhex>=2.3.0,<3.0.0