Skip to content

Commit

Permalink
do not run pip check on ARM
Browse files Browse the repository at this point in the history
It does fail with some packages not available on ARM. We do not use
those for main CI, so that should be ok until the issue is resolved.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
  • Loading branch information
nashif authored and stephanosio committed Aug 21, 2024
1 parent cb82d2d commit 3d6e4e2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,11 @@ RUN python3 -m pip install -U --no-cache-dir pip && \
-r https://raw.githubusercontent.com/zephyrproject-rtos/mcuboot/main/scripts/requirements.txt \
GitPython imgtool junitparser junit2html numpy protobuf PyGithub \
pylint sh statistics west \
nrf-regtool>=5.3.0 && \
pip3 check
nrf-regtool>=5.3.0
# Run pip check on x86 only for now, it fails on arm.
RUN if [ "${HOSTTYPE}" = "x86_64" ]; then \
pip3 check \
; fi

# Clean up stale packages
RUN apt-get clean -y && \
Expand Down

0 comments on commit 3d6e4e2

Please sign in to comment.