We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b722d8c commit 5653a60Copy full SHA for 5653a60
.cirrus.yml
@@ -2,13 +2,25 @@ freebsd_instance:
2
image: freebsd-11-1-release-amd64
3
4
task:
5
- # This name gets reported as a build status in GitHub
6
name: stable x86_64-unknown-freebsd
7
setup_script:
8
- pkg install -y curl
9
- curl https://sh.rustup.rs -sSf --output rustup.sh
10
- sh rustup.sh -y
+ - . $HOME/.cargo/env
11
+ - rustup default stable
12
+ test_script:
13
14
+ - sh ci/run.sh x86_64-unknown-freebsd
15
+
16
+task:
17
+ name: nightly x86_64-unknown-freebsd
18
+ setup_script:
19
+ - pkg install -y curl
20
+ - curl https://sh.rustup.rs -sSf --output rustup.sh
21
+ - sh rustup.sh -y
22
23
+ - rustup default nightly
24
test_script:
25
- . $HOME/.cargo/env
- - cd libc-test
- - cargo test
26
0 commit comments