Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable android tests #200

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ jobs:
- target: aarch64-apple-darwin
rust: nightly
os: macos-latest
#- target: arm-linux-androideabi
# rust: stable
# os: ubuntu-latest
#- target: aarch64-linux-android
# rust: stable
# os: ubuntu-latest
#- target: i686-linux-android
# rust: stable
# os: ubuntu-latest
#- target: x86_64-linux-android
# rust: stable
# os: ubuntu-latest
- target: arm-linux-androideabi
rust: stable
os: ubuntu-latest
- target: aarch64-linux-android
rust: stable
os: ubuntu-latest
- target: i686-linux-android
rust: stable
os: ubuntu-latest
- target: x86_64-linux-android
rust: stable
os: ubuntu-latest
- target: i686-unknown-linux-gnu
rust: stable
os: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion ci/docker/arm-linux-androideabi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
python \
unzip \
gcc \
libc6-dev
libc6-dev \
libunwind-dev

RUN curl -O https://dl.google.com/android/repository/android-ndk-r15b-linux-x86_64.zip
RUN unzip -q android-ndk-r15b-linux-x86_64.zip
Expand Down
3 changes: 2 additions & 1 deletion ci/docker/i686-linux-android/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
python \
unzip \
gcc \
libc6-dev
libc6-dev \
libunwind-dev

RUN curl -O https://dl.google.com/android/repository/android-ndk-r15b-linux-x86_64.zip
RUN unzip -q android-ndk-r15b-linux-x86_64.zip
Expand Down
3 changes: 2 additions & 1 deletion ci/docker/x86_64-linux-android/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
python \
unzip \
gcc \
libc6-dev
libc6-dev \
libunwind-dev

RUN curl -O https://dl.google.com/android/repository/android-ndk-r15b-linux-x86_64.zip
RUN unzip -q android-ndk-r15b-linux-x86_64.zip
Expand Down
Loading