summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-01-02 15:51:45 -0500
committerAndrew Gallant <jamslam@gmail.com>2017-01-02 15:51:45 -0500
commit2f0d9d411ad256517d0f7d4a0a326288f37acb7b (patch)
tree2bfb9e0e6e41082d653d0eae143123c61e5663c3 /.travis.yml
parent163e00677aaf7af8c32ec2cfd699e8d26bf8437c (diff)
Tweak build matrix.
Only build darwin on nightly for deployment. (Darwin builders are quite slow on Travis.) Also, add MUSL to Rust 1.12.0 builder.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 1280efb3..474231a2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,16 +24,13 @@ matrix:
- os: linux
rust: beta
env: TARGET=x86_64-unknown-linux-gnu
- - os: osx
- rust: beta
- env: TARGET=x86_64-apple-darwin
# Minimum Rust supported channel.
- os: linux
rust: 1.12.0
env: TARGET=x86_64-unknown-linux-gnu
- - os: osx
+ - os: linux
rust: 1.12.0
- env: TARGET=x86_64-apple-darwin
+ env: TARGET=x86_64-unknown-linux-musl
before_install:
- export PATH="$PATH:$HOME/.cargo/bin"