Skip to content

Commit 3d6e4e2

Browse files
nashifstephanosio
authored andcommitted
do not run pip check on ARM
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 <[email protected]>
1 parent cb82d2d commit 3d6e4e2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile.base

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,11 @@ RUN python3 -m pip install -U --no-cache-dir pip && \
114114
-r https://raw.githubusercontent.com/zephyrproject-rtos/mcuboot/main/scripts/requirements.txt \
115115
GitPython imgtool junitparser junit2html numpy protobuf PyGithub \
116116
pylint sh statistics west \
117-
nrf-regtool>=5.3.0 && \
118-
pip3 check
117+
nrf-regtool>=5.3.0
118+
# Run pip check on x86 only for now, it fails on arm.
119+
RUN if [ "${HOSTTYPE}" = "x86_64" ]; then \
120+
pip3 check \
121+
; fi
119122

120123
# Clean up stale packages
121124
RUN apt-get clean -y && \

0 commit comments

Comments
 (0)