mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
Try compiling Tokio on FreeBSD (#228)
This commit is contained in:
parent
5dab821b29
commit
61b2889881
11
.travis.yml
11
.travis.yml
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user