Skip to content

Commit dd86516

Browse files
authored
Merge pull request #1917 from JohnTitor/arm-android
Fix {aarch64,arm}-android targets' CI
2 parents a410c35 + 341b31e commit dd86516

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

ci/docker/aarch64-linux-android/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
FROM ubuntu:20.04
22

3-
RUN dpkg --add-architecture i386 && \
4-
apt-get update && \
5-
apt-get install -y --no-install-recommends \
3+
RUN dpkg --add-architecture i386
4+
RUN apt-get update
5+
RUN apt-get install -y --no-install-recommends libc6-dev gcc
6+
RUN apt-get install -y --no-install-recommends \
67
file \
78
curl \
89
ca-certificates \
@@ -12,9 +13,7 @@ RUN dpkg --add-architecture i386 && \
1213
expect \
1314
openjdk-8-jre \
1415
libstdc++6:i386 \
15-
libpulse0 \
16-
gcc \
17-
libc6-dev
16+
libpulse0
1817

1918
WORKDIR /android/
2019
COPY android* /android/

ci/docker/arm-linux-androideabi/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
FROM ubuntu:20.04
22

3-
RUN dpkg --add-architecture i386 && \
4-
apt-get update && \
5-
apt-get install -y --no-install-recommends \
3+
RUN dpkg --add-architecture i386
4+
RUN apt-get update
5+
RUN apt-get install -y --no-install-recommends libc6-dev gcc
6+
RUN apt-get install -y --no-install-recommends \
67
file \
78
curl \
89
ca-certificates \
@@ -12,9 +13,7 @@ RUN dpkg --add-architecture i386 && \
1213
expect \
1314
openjdk-8-jre \
1415
libstdc++6:i386 \
15-
libpulse0 \
16-
gcc \
17-
libc6-dev
16+
libpulse0
1817

1918
WORKDIR /android/
2019
COPY android* /android/

0 commit comments

Comments
 (0)