diff options
author | Daniel Mueller <deso@posteo.net> | 2019-06-01 11:46:58 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-06-01 11:46:58 -0700 |
commit | 61f2baa0af6b2a54e0c109e5f73c8ff25f9f2ca6 (patch) | |
tree | 7526c0aca9a6ec34826a55cad24dd4a3457364f0 /libc/.cirrus.yml | |
parent | 7c880699bb9a49037c09b1be990e677a1857af7a (diff) | |
download | nitrocli-61f2baa0af6b2a54e0c109e5f73c8ff25f9f2ca6.tar.gz nitrocli-61f2baa0af6b2a54e0c109e5f73c8ff25f9f2ca6.tar.bz2 |
Update libc crate to 0.2.57
This change updates the libc crate to version 0.2.57.
Import subrepo libc/:libc at cdc48ea36d8d2890dba38e8f779001e6855339a2
Diffstat (limited to 'libc/.cirrus.yml')
-rw-r--r-- | libc/.cirrus.yml | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/libc/.cirrus.yml b/libc/.cirrus.yml index 3aa24af..47807ab 100644 --- a/libc/.cirrus.yml +++ b/libc/.cirrus.yml @@ -1,14 +1,27 @@ -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 + name: stable x86_64-unknown-freebsd-11 + freebsd_instance: + image: freebsd-11-2-release-amd64 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: nightly x86_64-unknown-freebsd-12 + freebsd_instance: + image: freebsd-12-0-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 - - cd libc-test - - cargo test + - sh ci/run.sh x86_64-unknown-freebsd |