Skip to content

Commit

Permalink
Merge #657
Browse files Browse the repository at this point in the history
657: Add arm/musl, mips64, and s390x linux targets to Tier3 r=asomers

I don't know why these weren't added originally. They should work with `cross`.
  • Loading branch information
bors[bot] committed Jul 8, 2017
2 parents 45c1821 + 2153527 commit 03d3ccd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ matrix:
rust: 1.13.0
- env: TARGET=arm-unknown-linux-gnueabi
rust: 1.13.0
# - env: TARGET=arm-unknown-linux-musleabi
- env: TARGET=arm-unknown-linux-musleabi
rust: 1.13.0
- env: TARGET=armv7-unknown-linux-gnueabihf
rust: 1.13.0
- env: TARGET=i686-unknown-linux-gnu
Expand All @@ -58,8 +59,10 @@ matrix:
rust: 1.13.0
- env: TARGET=mips-unknown-linux-gnu
rust: 1.13.0
# - env: TARGET=mips64-unknown-linux-gnuabi64
# - env: TARGET=mips64el-unknown-linux-gnuabi64
- env: TARGET=mips64-unknown-linux-gnuabi64
rust: 1.13.0
- env: TARGET=mips64el-unknown-linux-gnuabi64
rust: 1.13.0
- env: TARGET=mipsel-unknown-linux-gnu
rust: 1.13.0
- env: TARGET=powerpc-unknown-linux-gnu
Expand All @@ -68,7 +71,8 @@ matrix:
rust: 1.13.0
- env: TARGET=powerpc64le-unknown-linux-gnu
rust: 1.13.0
# - env: TARGET=s390x-unknown-linux-gnu
- env: TARGET=s390x-unknown-linux-gnu
rust: 1.13.0
- env: TARGET=x86_64-unknown-linux-gnu
rust: 1.13.0
- env: TARGET=x86_64-unknown-linux-musl
Expand Down Expand Up @@ -121,6 +125,16 @@ matrix:
rust: 1.13.0
os: osx

# Planning to add these targets, but they can fail for now
- env: TARGET=mips64-unknown-linux-gnuabi64
rust: 1.13.0
- env: TARGET=mips64el-unknown-linux-gnuabi64
rust: 1.13.0
- env: TARGET=arm-unknown-linux-musleabi
rust: 1.13.0
- env: TARGET=s390x-unknown-linux-gnu
rust: 1.13.0

# Failures for nightlies may be because of compiler bugs, so don't fail the
# build if these fail.
- env: TARGET=x86_64-unknown-linux-gnu
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,13 @@ Tier 2:

Tier 3:
* aarch64-apple-ios
* arm-unknown-linux-musleabi
* armv7-apple-ios
* armv7s-apple-ios
* i386-apple-ios
* mips64-unknown-linux-gnuabi64
* mips64el-unknown-linux-gnuabi64
* s390x-unknown-linux-gnu
* x86_64-apple-ios

## Usage
Expand Down

0 comments on commit 03d3ccd

Please sign in to comment.