[CI] let pip3 break system packages
Some checks failed
Containers / timestamp (push) Successful in 1s
Containers / release-trigger (push) Has been skipped
Containers / architectures (push) Failing after 2s
Containers / stable-release-trigger (push) Has been skipped
Containers / tags (push) Successful in 1s
Containers / releases (push) Has been skipped
Containers / git-tag (push) Has been skipped
Containers / stable-releases (push) Has been skipped
Containers / stable-git-tag (push) Has been skipped
Containers / dev-generic (push) Failing after 7s
Containers / candidates (push) Has been skipped

This commit is contained in:
Marius Alwan Meyer 2023-07-21 15:33:53 +02:00
parent 2090d3d90d
commit 0c7477b31a

View File

@ -24,9 +24,9 @@ RUN \
python3-setuptools \ python3-setuptools \
python3-wheel \ python3-wheel \
ssh \ ssh \
&& pip3 install \ && pip3 install --break-system-packages \
-r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-base.txt \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-base.txt \
&& pip3 install cmake \ && pip3 install --break-system-packages cmake \
&& apt-get remove -y --purge \ && apt-get remove -y --purge \
python3-dev \ python3-dev \
python3-pip \ python3-pip \
@ -69,7 +69,7 @@ RUN \
tio \ tio \
wget \ wget \
xz-utils \ xz-utils \
&& pip3 install \ && pip3 install --break-system-packages \
-r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-build-test.txt \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-build-test.txt \
-r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-run-test.txt \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-run-test.txt \
&& apt-get clean \ && apt-get clean \