-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80eca8d
commit fd30501
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
language: rust | ||
|
||
matrix: | ||
include: | ||
# Android | ||
- env: TARGET=aarch64-linux-android DISABLE_TESTS=1 | ||
- env: TARGET=arm-linux-androideabi DISABLE_TESTS=1 | ||
- env: TARGET=armv7-linux-androideabi DISABLE_TESTS=1 | ||
- env: TARGET=i686-linux-android DISABLE_TESTS=1 | ||
- env: TARGET=x86_64-linux-android DISABLE_TESTS=1 | ||
|
||
# iOS | ||
- env: TARGET=aarch64-apple-ios DISABLE_TESTS=1 | ||
os: osx | ||
- env: TARGET=armv7-apple-ios DISABLE_TESTS=1 | ||
os: osx | ||
- env: TARGET=armv7s-apple-ios DISABLE_TESTS=1 | ||
os: osx | ||
- env: TARGET=i386-apple-ios DISABLE_TESTS=1 | ||
os: osx | ||
- env: TARGET=x86_64-apple-ios DISABLE_TESTS=1 | ||
os: osx | ||
|
||
# Linux | ||
- env: TARGET=aarch64-unknown-linux-gnu | ||
- env: TARGET=arm-unknown-linux-gnueabi | ||
- env: TARGET=armv7-unknown-linux-gnueabihf | ||
- env: TARGET=i686-unknown-linux-gnu | ||
- env: TARGET=i686-unknown-linux-musl | ||
- env: TARGET=mips-unknown-linux-gnu | ||
- env: TARGET=mips64-unknown-linux-gnuabi64 | ||
- env: TARGET=mips64el-unknown-linux-gnuabi64 | ||
- env: TARGET=mipsel-unknown-linux-gnu | ||
- env: TARGET=powerpc-unknown-linux-gnu | ||
- env: TARGET=powerpc64-unknown-linux-gnu | ||
- env: TARGET=powerpc64le-unknown-linux-gnu | ||
- env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1 | ||
- env: TARGET=x86_64-unknown-linux-gnu | ||
- env: TARGET=x86_64-unknown-linux-musl | ||
|
||
# OSX | ||
- env: TARGET=i686-apple-darwin | ||
os: osx | ||
- env: TARGET=x86_64-apple-darwin | ||
os: osx | ||
|
||
# *BSD | ||
- env: TARGET=i686-unknown-freebsd DISABLE_TESTS=1 | ||
- env: TARGET=x86_64-unknown-freebsd DISABLE_TESTS=1 | ||
- env: TARGET=x86_64-unknown-netbsd DISABLE_TESTS=1 | ||
|
||
# Windows | ||
- env: TARGET=x86_64-pc-windows-gnu |