Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
freebsd_instance:
image: freebsd-11-2-release-amd64

task:
name: cargo test
# Record some info about the test environment
sysinfo_script:
- mount
- df -h
- sysctl hw.model hw.ncpu hw.physmem
- freebsd-version
# Install Rust
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
# In 11.2, aio on ufs is considered unsafe
- sysctl vfs.aio.enable_unsafe=1
test_script:
- . $HOME/.cargo/env
- cargo test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
A library for integrating file I/O with [tokio]. File I/O can be seamlessly
mixed with all other Future types within the Tokio reactor.

[![Build Status](https://api.cirrus-ci.com/github/asomers/tokio-file.svg)](https://cirrus-ci.com/github/asomers/tokio-file)

[tokio]: https://github.com/tokio-rs/tokio-core

```toml
Expand Down