diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2019-08-14 08:17:44 +0200 |
---|---|---|
committer | gnzlbg <gonzalobg88@gmail.com> | 2019-08-14 08:17:44 +0200 |
commit | 077f4321b255bf811621a64b6b426a5b8f2ff19a (patch) | |
tree | e41d696be3b3a649ed636c555eb6ac1c71f6d235 /.cirrus.yml | |
parent | af88cf1f0f6cbcc02495309a8ba757af8b082bbd (diff) | |
download | rust-libc-077f4321b255bf811621a64b6b426a5b8f2ff19a.tar.gz |
Test ABI without LIBC_CI on all supported FreeBSD versions
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index b3d8dfb26f..e3f777b529 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,19 +1,4 @@ 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 - - . $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 @@ -26,6 +11,7 @@ task: test_script: - . $HOME/.cargo/env - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd + - sh ci/run.sh x86_64-unknown-freebsd task: name: nightly x86_64-unknown-freebsd-12 @@ -40,3 +26,4 @@ task: test_script: - . $HOME/.cargo/env - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd + - sh ci/run.sh x86_64-unknown-freebsd |