Skip to content

Commit

Permalink
Add more platforms to CI
Browse files Browse the repository at this point in the history
 * aarch64-unknown-linux-musl
 * sparc64-unknown-linux-gnu
 * x86_64-unknown-linux-gnux32

These don't pass yet, but should be supportable by `nix`, so let's add them now so we can move towards fully supporting them.
  • Loading branch information
Susurrus committed Dec 1, 2018
1 parent 2f6196c commit bea6867
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ matrix:
# Linux
- env: TARGET=aarch64-unknown-linux-gnu
rust: 1.24.1
- env: TARGET=aarch64-unknown-linux-musl
rust: 1.24.1
- env: TARGET=arm-unknown-linux-gnueabi
rust: 1.24.1
- env: TARGET=arm-unknown-linux-musleabi DISABLE_TESTS=1
Expand All @@ -75,8 +77,12 @@ matrix:
rust: 1.24.1
- env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1
rust: 1.24.1
- env: TARGET=sparc64-unknown-linux-gnu
rust: 1.24.1
- env: TARGET=x86_64-unknown-linux-gnu
rust: 1.24.1
- env: TARGET=x86_64-unknown-linux-gnux32
rust: 1.24.1
- env: TARGET=x86_64-unknown-linux-musl
rust: 1.24.1

Expand All @@ -93,6 +99,14 @@ matrix:
- env: TARGET=x86_64-unknown-linux-gnu
rust: stable

allow_failures:
- env: TARGET=aarch64-unknown-linux-musl
rust: 1.24.1
- env: TARGET=sparc64-unknown-linux-gnu
rust: 1.24.1
- env: TARGET=x86_64-unknown-linux-gnux32
rust: 1.24.1

before_install: set -e

install:
Expand Down

0 comments on commit bea6867

Please sign in to comment.