Skip to content

Commit 44e8b3f

Browse files
authored
Merge pull request #1723 from JohnTitor/ubuntu-image
Update Ubuntu images to 20.04
2 parents ee7de9d + b9e6a90 commit 44e8b3f

File tree

28 files changed

+65
-38
lines changed

28 files changed

+65
-38
lines changed

ci/android-install-ndk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ case "$1" in
3333
;;
3434
esac;
3535

36-
${NDK}/build/tools/make_standalone_toolchain.py \
36+
python3 ${NDK}/build/tools/make_standalone_toolchain.py \
3737
--install-dir "/android/ndk-${1}" \
3838
--arch "${arch}" \
3939
--api ${api}

ci/docker/aarch64-linux-android/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22

33
RUN dpkg --add-architecture i386 && \
44
apt-get update && \
55
apt-get install -y --no-install-recommends \
66
file \
77
curl \
88
ca-certificates \
9-
python \
9+
python3 \
10+
python3-distutils \
1011
unzip \
1112
expect \
1213
openjdk-8-jre \

ci/docker/aarch64-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc libc6-dev ca-certificates \
44
gcc-aarch64-linux-gnu libc6-dev-arm64-cross qemu-user

ci/docker/aarch64-unknown-linux-musl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc make libc6-dev git curl ca-certificates \

ci/docker/arm-linux-androideabi/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22

33
RUN dpkg --add-architecture i386 && \
44
apt-get update && \
55
apt-get install -y --no-install-recommends \
66
file \
77
curl \
88
ca-certificates \
9-
python \
9+
python3 \
10+
python3-distutils \
1011
unzip \
1112
expect \
1213
openjdk-8-jre \

ci/docker/arm-unknown-linux-gnueabihf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc libc6-dev ca-certificates \
44
gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-user

ci/docker/arm-unknown-linux-musleabihf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc make libc6-dev git curl ca-certificates \

ci/docker/asmjs-unknown-emscripten/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22

33
RUN apt-get update && \
44
apt-get install -y --no-install-recommends \
@@ -8,7 +8,8 @@ RUN apt-get update && \
88
git \
99
libc6-dev \
1010
libxml2 \
11-
python \
11+
python3 \
12+
python3-distutils \
1213
xz-utils
1314

1415
COPY emscripten.sh /

ci/docker/i686-linux-android/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
FROM ubuntu:19.10
1+
FROM ubuntu:20.04
22

33
RUN dpkg --add-architecture i386 && \
44
apt-get update && \
55
apt-get install -y --no-install-recommends \
66
file \
77
curl \
88
ca-certificates \
9-
python \
9+
python3 \
10+
python3-distutils \
1011
unzip \
1112
expect \
1213
openjdk-8-jre \

ci/docker/i686-unknown-linux-gnu/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# FIXME: Somehow we encounter a panic with Ubuntu 20.04.
2+
# Should investigate why it causes and fix.
13
FROM ubuntu:19.10
24
RUN apt-get update
35
RUN apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)