diff options
Diffstat (limited to 'libc/.cirrus.yml')
-rw-r--r-- | libc/.cirrus.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/.cirrus.yml b/libc/.cirrus.yml new file mode 100644 index 0000000..3aa24af --- /dev/null +++ b/libc/.cirrus.yml @@ -0,0 +1,14 @@ +freebsd_instance: + image: freebsd-11-1-release-amd64 + +task: + # This name gets reported as a build status in GitHub + name: stable x86_64-unknown-freebsd + setup_script: + - pkg install -y curl + - curl https://sh.rustup.rs -sSf --output rustup.sh + - sh rustup.sh -y + test_script: + - . $HOME/.cargo/env + - cd libc-test + - cargo test |