Skip to content

Commit

Permalink
Revert "Narrow test suite to look closer at FreeBSD failure"
Browse files Browse the repository at this point in the history
This reverts commit 3d3b3b4.
  • Loading branch information
Darksonn committed Sep 21, 2024
1 parent 1878493 commit 012ebe5
Show file tree
Hide file tree
Showing 2 changed files with 1,149 additions and 1 deletion.
33 changes: 32 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,37 @@ env:
# 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 64-bit
setup_script:
- pkg install -y bash
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile minimal --default-toolchain $RUST_STABLE
- . $HOME/.cargo/env
- |
echo "~~~~ rustc --version ~~~~"
rustc --version
test_script:
- . $HOME/.cargo/env
- cargo test --all --all-features

task:
name: FreeBSD docs
env:
RUSTFLAGS: --cfg docsrs --cfg tokio_unstable
RUSTDOCFLAGS: --cfg docsrs --cfg tokio_unstable -Dwarnings
setup_script:
- pkg install -y bash
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile minimal --default-toolchain $RUST_NIGHTLY
- . $HOME/.cargo/env
- |
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:
Expand All @@ -24,4 +55,4 @@ task:
rustc --version
test_script:
- . $HOME/.cargo/env
- cargo test -p tokio --all-features --target i686-unknown-freebsd
- cargo test --all --all-features --target i686-unknown-freebsd
Loading

0 comments on commit 012ebe5

Please sign in to comment.