Skip to content

Commit a01c430

Browse files
committed
Update the Android Docker files to Ubuntu 22.04
1 parent b9cf2d7 commit a01c430

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

ci/android-install-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -ex
1919
# which apparently magically accepts the licenses.
2020

2121
mkdir sdk
22-
curl --retry 5 https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip -O
22+
curl --retry 5 https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip -O
2323
unzip -d sdk sdk-tools-linux-3859397.zip
2424

2525
case "$1" in

ci/docker/aarch64-linux-android/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:22.04
22

3-
RUN dpkg --add-architecture i386 && \
4-
apt-get update && \
3+
RUN apt-get update && \
54
apt-get install -y --no-install-recommends \
65
file \
76
make \
87
curl \
98
ca-certificates \
10-
python \
9+
python-is-python3 \
1110
unzip \
1211
expect \
13-
openjdk-9-jre \
14-
libstdc++6:i386 \
12+
openjdk-11-jre \
13+
libstdc++6-i386-cross \
1514
libpulse0 \
1615
gcc \
1716
libc6-dev

ci/docker/arm-linux-androideabi/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:22.04
22

3-
RUN dpkg --add-architecture i386 && \
4-
apt-get update && \
3+
RUN apt-get update && \
54
apt-get install -y --no-install-recommends \
65
file \
76
make \
87
curl \
98
ca-certificates \
10-
python \
9+
python-is-python3 \
1110
unzip \
1211
expect \
13-
openjdk-9-jre \
14-
libstdc++6:i386 \
12+
openjdk-11-jre \
13+
libstdc++6-i386-cross \
1514
libpulse0 \
1615
gcc \
1716
libc6-dev

ci/docker/x86_64-linux-android/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:22.04
22

33
RUN apt-get update && \
44
apt-get install -y --no-install-recommends \
55
ca-certificates \
66
curl \
77
gcc \
88
libc-dev \
9-
python \
9+
python-is-python3 \
1010
unzip \
1111
file \
1212
make

0 commit comments

Comments
 (0)