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
48
49
50
51
52
53
54
55
56
57
58
59
task:
name: rust 1.69 on freebsd 13
freebsd_instance:
image: freebsd-13-1-release-amd64
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain=1.69
- . $HOME/.cargo/env
- rustup --version
- rustup component add clippy
test_script:
- . $HOME/.cargo/env
- cargo check
- cargo check --no-default-features
- cargo clippy -- -D warnings
- cargo check --example simple
- FREEBSD_CI=1 cargo test -j1
- FREEBSD_CI=1 cargo test --lib -j1 -- --ignored
task:
name: rust nightly on freebsd 13
freebsd_instance:
image: freebsd-13-1-release-amd64
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain=nightly
- . $HOME/.cargo/env
- rustup --version
- rustup component add clippy
test_script:
- . $HOME/.cargo/env
- cargo check
- cargo check --no-default-features
- cargo clippy -- -D warnings
- cargo check --example simple
- FREEBSD_CI=1 cargo test -j1
- FREEBSD_CI=1 cargo test --lib -j1 -- --ignored
task:
name: rust 1.69 on mac m1
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
setup_script:
- brew update
- brew install curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain=1.69
- source $HOME/.cargo/env
- rustup --version
- rustup component add clippy
test_script:
- source $HOME/.cargo/env
- cargo check
- cargo check --no-default-features
- cargo check --no-default-features --features apple-sandbox
- cargo clippy -- -D warnings
- cargo check --example simple
- APPLE_CI=1 cargo test -j1
- APPLE_CI=1 cargo test --lib -j1 -- --ignored