Try compiling Tokio on FreeBSD (#228)

This commit is contained in:
Carl Lerche 2018-03-13 13:14:12 -07:00 committed by GitHub
parent 5dab821b29
commit 61b2889881
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@ matrix:
- os: osx
- rust: beta
- rust: nightly
- env: TARGET=x86_64-unknown-freebsd
script:
- |
@ -17,7 +18,15 @@ script:
then
cargo build --benches --all
fi
- cargo test --all
- |
if [[ "$TARGET" ]]
then
rustup target add $TARGET
cargo check --all --target $TARGET
cargo check --tests --all --target $TARGET
else
cargo test --all
fi
deploy:
provider: pages