Files
tokio/.cirrus.yml
T

55 lines
1.7 KiB
YAML
Raw Normal View History

2019-02-06 22:19:54 -07:00
freebsd_instance:
image: freebsd-12-2-release-amd64
2021-10-26 15:44:00 +02:00
env:
RUSTFLAGS: -D warnings
2019-02-06 22:19:54 -07:00
# 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:
2021-10-26 15:44:00 +02:00
name: FreeBSD 64-bit
2019-02-06 22:19:54 -07:00
setup_script:
- pkg install -y bash curl
2019-02-06 22:19:54 -07:00
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile minimal --default-toolchain stable
2019-02-06 22:19:54 -07:00
- . $HOME/.cargo/env
- |
2019-07-10 14:36:36 -07:00
echo "~~~~ rustc --version ~~~~"
rustc --version
2019-02-06 22:19:54 -07:00
test_script:
- . $HOME/.cargo/env
2021-01-13 00:19:57 +09:00
- cargo test --all --all-features
2021-10-26 15:44:00 +02:00
task:
name: FreeBSD docs
env:
RUSTFLAGS: --cfg docsrs
RUSTDOCFLAGS: --cfg docsrs -Dwarnings
setup_script:
- pkg install -y bash curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
2021-11-23 19:29:57 +09:00
- sh rustup.sh -y --profile minimal --default-toolchain nightly-2021-11-23
2020-11-30 18:20:18 -07:00
- . $HOME/.cargo/env
- |
2021-10-26 15:44:00 +02:00
echo "~~~~ rustc --version ~~~~"
rustc --version
test_script:
- . $HOME/.cargo/env
- cargo doc --lib --no-deps --all-features --document-private-items
task:
name: FreeBSD 32-bit
setup_script:
- pkg install -y bash curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile minimal --default-toolchain stable
- . $HOME/.cargo/env
- rustup target add i686-unknown-freebsd
- |
echo "~~~~ rustc --version ~~~~"
rustc --version
test_script:
- . $HOME/.cargo/env
- cargo test --all --all-features --target i686-unknown-freebsd