Skip to content

Commit 4df3624

Browse files
committed
ci: update ubuntu to 24.04
I haven't seen any functional difference, but might as well keep up to date.
1 parent 2a13af8 commit 4df3624

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/Dockerfile.zephyr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04 as zephyr
1+
FROM ubuntu:24.04 AS zephyr
22

33
ARG ZEPHYR_VERSION=2.4.0
44
# Prevent prompts configuring tzdata
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1010
python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
1111
make gcc gcc-multilib g++-multilib libsdl2-dev
1212

13-
RUN pip3 install -U west
13+
RUN pip3 install --break-system-packages -U west
1414

1515
ENV WEST_BASE=/zephyrproject
1616
ENV ZEPHYR_BASE=${WEST_BASE}/zephyr
@@ -24,7 +24,7 @@ RUN if [ "${ZEPHYR_VERSION}" = "2.3.0" ]; then \
2424
RUN west init -l ${ZEPHYR_BASE}
2525
RUN west update --narrow --fetch-opt=--filter=tree:0
2626

27-
RUN pip3 install -r ${ZEPHYR_BASE}/scripts/requirements.txt
27+
RUN pip3 install --break-system-packages -r ${ZEPHYR_BASE}/scripts/requirements.txt
2828

2929
ADD setup-sdk.sh /setup-sdk.sh
3030
RUN /setup-sdk.sh

0 commit comments

Comments
 (0)