From 5e85585a9522d47ec874f5281fc8b2ec20262fd4 Mon Sep 17 00:00:00 2001 From: Elliott Linder Date: Mon, 10 Jun 2019 02:41:47 +0200 Subject: [PATCH] fix: temporarily remove 'musl' CI tests Cargo does not enable OS/cfg specific examples, so the 'cdylib' tests errors when using 'musl' due to not supporting the crate type. Temporarily remove these targets until a workaround can be implemented. --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01dbe2d5..a2e630e5 100755 --- a/.travis.yml +++ b/.travis.yml @@ -15,12 +15,12 @@ matrix: # Linux - env: TARGET=i686-unknown-linux-gnu rust: nightly - - env: TARGET=i686-unknown-linux-musl - rust: nightly + # - env: TARGET=i686-unknown-linux-musl + # rust: nightly - env: TARGET=x86_64-unknown-linux-gnu rust: nightly - - env: TARGET=x86_64-unknown-linux-musl - rust: nightly + # - env: TARGET=x86_64-unknown-linux-musl + # rust: nightly # OSX - env: TARGET=i686-apple-darwin