Skip to content

Commit 1bae5a6

Browse files
committed
Add Ubuntu 26.04 folder and remove automake1.11 from all Dockerfiles
The automake1.11 package was removed from Debian after Jessie
1 parent e660c0f commit 1bae5a6

14 files changed

Lines changed: 61 additions & 16 deletions

File tree

images/env-android/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG OPENJDK="openjdk:17-jdk-slim-buster"
1+
ARG OPENJDK="eclipse-temurin:17-jdk-jammy"
22
FROM $OPENJDK
33

44
ARG API_LEVEL="29"
@@ -25,7 +25,6 @@ RUN apt-get install -y \
2525
RUN apt-get install -y \
2626
autoconf \
2727
automake \
28-
automake1.11 \
2928
cmake \
3029
intltool \
3130
libtool \

images/env-android/images.csv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
DOCKERFILE;ARGS (comma-separated list);TAG
2-
;OPENJDK=openjdk:17-jdk-slim-buster;jdk17
3-
;OPENJDK=openjdk:21-jdk-slim-buster;jdk21
4-
;OPENJDK=openjdk:21-jdk-slim-buster;latest
2+
;OPENJDK=eclipse-temurin:17-jdk-jammy;jdk17
3+
;OPENJDK=eclipse-temurin:21-jdk-jammy;jdk21
4+
;OPENJDK=eclipse-temurin:21-jdk-jammy;latest

images/env-ubuntu/26.04/Dockerfile

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
FROM ubuntu:26.04
2+
3+
ENV DEBIAN_FRONTEND=noninteractive
4+
5+
RUN apt-get update
6+
7+
# compilers and tools
8+
RUN apt-get install -y \
9+
ccache \
10+
clang \
11+
clang-17 \
12+
clang-18 \
13+
clang-19 \
14+
clang-20 \
15+
clang-21 \
16+
clang-format \
17+
g++ \
18+
g++-11 \
19+
g++-12 \
20+
g++-13 \
21+
g++-14 \
22+
g++-15 \
23+
git \
24+
python3 \
25+
valgrind
26+
27+
# for 3rd-parties
28+
RUN apt-get install -y \
29+
autoconf \
30+
automake \
31+
cmake \
32+
intltool \
33+
libtool \
34+
m4 \
35+
make \
36+
meson \
37+
pkg-config \
38+
uuid-dev
39+
40+
# for roc
41+
RUN apt-get install -y \
42+
doxygen \
43+
gengetopt \
44+
graphviz \
45+
libasound2-dev \
46+
libbenchmark-dev \
47+
libcpputest-dev \
48+
libpulse-dev \
49+
libsndfile-dev \
50+
libsox-dev \
51+
libspeexdsp-dev \
52+
libssl-dev \
53+
libunwind-dev \
54+
libuv1-dev \
55+
pulseaudio \
56+
ragel \
57+
scons

images/toolchain-aarch64-linux-gnu/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get update
77
RUN apt-get install -y \
88
autoconf \
99
automake \
10-
automake1.11 \
1110
ccache \
1211
cmake \
1312
g++ \

images/toolchain-aarch64-linux-gnu/legacy/arm.com/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get update
77
RUN apt-get install -y \
88
autoconf \
99
automake \
10-
automake1.11 \
1110
ccache \
1211
cmake \
1312
g++ \

images/toolchain-aarch64-linux-gnu/legacy/linaro.org/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get update
77
RUN apt-get install -y \
88
autoconf \
99
automake \
10-
automake1.11 \
1110
ccache \
1211
cmake \
1312
g++ \

images/toolchain-arm-bcm2708-linux-gnueabihf/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ RUN apt-get update
1111
RUN apt-get install -y \
1212
autoconf \
1313
automake \
14-
automake1.11 \
1514
ccache \
1615
cmake \
1716
g++ \

images/toolchain-arm-linux-gnueabihf/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get update
77
RUN apt-get install -y \
88
autoconf \
99
automake \
10-
automake1.11 \
1110
ccache \
1211
cmake \
1312
g++ \

images/toolchain-arm-linux-gnueabihf/legacy/arm.com/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get update
77
RUN apt-get install -y \
88
autoconf \
99
automake \
10-
automake1.11 \
1110
ccache \
1211
cmake \
1312
g++ \

images/toolchain-arm-linux-gnueabihf/legacy/linaro.org/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get update
77
RUN apt-get install -y \
88
autoconf \
99
automake \
10-
automake1.11 \
1110
ccache \
1211
cmake \
1312
g++ \

0 commit comments

Comments
 (0)