2019-02-06 22:19:54 -07:00
|
|
|
freebsd_instance:
|
|
|
|
|
image: freebsd-12-0-release-amd64
|
|
|
|
|
|
|
|
|
|
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
|
|
|
|
|
# same VM. The binary will be built in 32-bit mode, but will execute on a
|
|
|
|
|
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
|
|
|
|
|
# the system's binaries, so the environment shouldn't matter.
|
|
|
|
|
task:
|
|
|
|
|
name: FreeBSD 12.0
|
|
|
|
|
env:
|
|
|
|
|
LOOM_MAX_DURATION: 10
|
|
|
|
|
setup_script:
|
|
|
|
|
- pkg install -y curl
|
|
|
|
|
- curl https://sh.rustup.rs -sSf --output rustup.sh
|
|
|
|
|
- sh rustup.sh -y
|
|
|
|
|
- . $HOME/.cargo/env
|
|
|
|
|
- rustup target add i686-unknown-freebsd
|
2019-03-22 11:58:00 -07:00
|
|
|
- |
|
|
|
|
|
# Remove any existing patch statements
|
|
|
|
|
mv Cargo.toml Cargo.toml.bck
|
|
|
|
|
sed -n '/\[patch.crates-io\]/q;p' Cargo.toml.bck > Cargo.toml
|
|
|
|
|
|
|
|
|
|
# Patch all crates
|
|
|
|
|
cat ci/patch.toml >> Cargo.toml
|
|
|
|
|
|
|
|
|
|
# Print `Cargo.toml` for debugging
|
|
|
|
|
echo "~~~~ Cargo.toml ~~~~"
|
|
|
|
|
cat Cargo.toml
|
|
|
|
|
echo "~~~~~~~~~~~~~~~~~~~~"
|
2019-02-06 22:19:54 -07:00
|
|
|
cargo_cache:
|
|
|
|
|
folder: $HOME/.cargo/registry
|
|
|
|
|
test_script:
|
|
|
|
|
- . $HOME/.cargo/env
|
2019-04-25 19:22:32 -07:00
|
|
|
- cargo test --all
|
2019-02-06 22:19:54 -07:00
|
|
|
- cargo doc --all
|
|
|
|
|
i686_test_script:
|
|
|
|
|
- . $HOME/.cargo/env
|
2019-03-22 11:58:00 -07:00
|
|
|
- |
|
2019-04-25 19:22:32 -07:00
|
|
|
cargo test --all --exclude tokio-tls --exclude tokio-macros --target i686-unknown-freebsd
|
2019-02-06 22:19:54 -07:00
|
|
|
before_cache_script:
|
|
|
|
|
- rm -rf $HOME/.cargo/registry/index
|