-
Notifications
You must be signed in to change notification settings - Fork 30
/
.cirrus.yml
41 lines (38 loc) · 1.24 KB
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Implementation derived from `.cirrus.yml` in Rust's libc bindings
# at revision 7f4774e76bd5cb9ccb7140d71ef9be9c16009cdf.
task:
name: stable x86_64-unknown-freebsd-15-snap
freebsd_instance:
image_family: freebsd-15-0-snap
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain stable -y --profile=minimal
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- cargo test --features=fs_utf8 --workspace
task:
name: stable x86_64-unknown-freebsd-14
freebsd_instance:
image_family: freebsd-14-0
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain stable -y --profile=minimal
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- cargo test --features=fs_utf8 --workspace
task:
name: stable x86_64-unknown-freebsd-13
freebsd_instance:
image_family: freebsd-13-3
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain stable -y --profile=minimal
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- cargo test --features=fs_utf8 --workspace