blob: 2456de30daba189b47996caecc07f53697af7521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
task:
name: x86_64-unknown-freebsd
freebsd_instance:
image_family: freebsd-12-4
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain nightly -y
- . $HOME/.cargo/env
- rustup default nightly
test_script:
- . $HOME/.cargo/env
- cargo build --all
|