libc-rs/.cirrus.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

task:
name: stable x86_64-unknown-freebsd
freebsd_instance:
image: freebsd-11-3-stable-amd64-v20190801
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
2019-05-16 16:33:39 +02:00
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- sh ci/run.sh x86_64-unknown-freebsd
task:
name: stable x86_64-unknown-freebsd-11
freebsd_instance:
image: freebsd-11-3-stable-amd64-v20190801
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
2019-05-16 16:33:39 +02:00
task:
name: nightly x86_64-unknown-freebsd-12
freebsd_instance:
image: freebsd-12-0-release-amd64
2019-05-16 16:33:39 +02:00
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain nightly -y
2019-05-16 16:33:39 +02:00
- . $HOME/.cargo/env
- rustup default nightly
test_script:
- . $HOME/.cargo/env
- LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd