-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy path.cirrus.yml
More file actions
47 lines (43 loc) · 1.42 KB
/
.cirrus.yml
File metadata and controls
47 lines (43 loc) · 1.42 KB
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
42
43
44
45
46
47
# Implementation derived from `.cirrus.yml` in Rust's libc bindings
# at revision 7f4774e76bd5cb9ccb7140d71ef9be9c16009cdf.
task:
name: stable x86_64-unknown-freebsd-14
freebsd_instance:
image_family: freebsd-14-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 --workspace --features=all-apis
task:
name: stable x86_64-unknown-freebsd-15
freebsd_instance:
image_family: freebsd-15-0-amd64-ufs
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 --workspace --features=all-apis
# Temporarily disabled due to this error:
#
# ```
# Failed to start an instance: INVALID_ARGUMENT: Snap images are not supported due to boot stability.
# ```
#task:
# name: stable x86_64-unknown-freebsd-16
# freebsd_instance:
# image_family: freebsd-16-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 --workspace --features=all-apis