diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2019-08-25 00:23:40 +0200 |
---|---|---|
committer | gnzlbg <gonzalobg88@gmail.com> | 2019-09-16 20:50:55 +0200 |
commit | 3843c7dba14529204eee5b64c5a44f792531d033 (patch) | |
tree | 48a14a60f06a0ed248c315f29d5dbb9c53efefc2 /.cirrus.yml | |
parent | 9b936e30116da305b799a74491c82ee2d2e8f678 (diff) | |
download | rust-libc-3843c7dba14529204eee5b64c5a44f792531d033.tar.gz |
Add FreeBSD10 support
This adds libc-test support for Freebsd10 and a CI build job that tests
FreeBSD10 with LIBC_CI only.
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index e3f777b529..4fb29f5180 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,4 +1,18 @@ task: + name: nightly x86_64-unknown-freebsd-10 + freebsd_instance: + image: freebsd-10-4-release-amd64 + setup_script: + - pkg install -y curl + - 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 + - LIBC_CI=1 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 |