Skip to content

Commit

Permalink
cmake: update docker cmake to 3.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raiden00pl authored and xiaoxiang781216 committed Jul 24, 2023
1 parent 9792211 commit 44b5eb3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions tools/ci/docker/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -230,19 +230,26 @@ RUN mkdir wamrc && \
FROM ubuntu:20.04
LABEL maintainer="[email protected]"

RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y -qq \
build-essential \
curl \
gcc \
libssl-dev

RUN mkdir -p cmake && \
curl -s -L wget https://cmake.org/files/v3.26/cmake-3.26.0.tar.gz \
| tar -C cmake --strip-components=1 -xz && \
cd cmake && ./bootstrap && make && make install && rm -rf cmake

RUN dpkg --add-architecture i386
# This is used for the final images so make sure to not store apt cache
# Note: xtensa-esp32-elf-gdb is linked to libpython2.7
RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y -qq --no-install-recommends \
-o APT::Immediate-Configure=0 \
avr-libc \
build-essential \
ccache \
clang \
clang-tidy \
cmake \
curl \
gcc \
gcc-avr \
gcc-multilib \
genromfs \
Expand Down

0 comments on commit 44b5eb3

Please sign in to comment.