• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Implementation derived from `.cirrus.yml` in Rust's libc bindings
2# at revision 7f4774e76bd5cb9ccb7140d71ef9be9c16009cdf.
3
4task:
5  name: stable x86_64-unknown-freebsd-13
6  freebsd_instance:
7    image_family: freebsd-13-0-snap
8  setup_script:
9    - pkg install -y curl
10    - curl https://sh.rustup.rs -sSf --output rustup.sh
11    - sh rustup.sh --default-toolchain stable -y --profile=minimal
12    - . $HOME/.cargo/env
13    - rustup default stable
14  test_script:
15    - . $HOME/.cargo/env
16    - cargo test --workspace --features=all-apis
17