forked from miklelappo/android-properties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (30 loc) · 1.33 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
language: rust
rust:
- stable
os:
- linux
- osx
before_script:
- rustup target add arm-linux-androideabi
- rustup target add armv7-linux-androideabi
- rustup target add aarch64-linux-android
- rustup target add i686-linux-android
script:
- cargo check --target=arm-linux-androideabi
- cargo check --target=arm-linux-androideabi --examples
- cargo check --target=armv7-linux-androideabi
- cargo check --target=armv7-linux-androideabi --examples
- cargo check --target=aarch64-linux-android
- cargo check --target=aarch64-linux-android --examples
- cargo check --target=i686-linux-android
- cargo check --target=i686-linux-android --examples
- cargo check --target=arm-linux-androideabi --features "bionic-deprecated"
- cargo check --target=arm-linux-androideabi --examples --features "bionic-deprecated"
- cargo check --target=armv7-linux-androideabi --features "bionic-deprecated"
- cargo check --target=armv7-linux-androideabi --examples --features "bionic-deprecated"
- cargo check --target=aarch64-linux-android --features "bionic-deprecated"
- cargo check --target=aarch64-linux-android --examples --features "bionic-deprecated"
- cargo check --target=i686-linux-android --features "bionic-deprecated"
- cargo check --target=i686-linux-android --examples --features "bionic-deprecated"
- cargo doc
- cargo test