Skip to content

Commit f47e6d6

Browse files
committed
Add a nightly FreeBSD Cirrus-CI task
1 parent 9fbb882 commit f47e6d6

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.cirrus.yml

+15-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@ freebsd_instance:
22
image: freebsd-11-1-release-amd64
33

44
task:
5-
# This name gets reported as a build status in GitHub
65
name: stable x86_64-unknown-freebsd
76
setup_script:
87
- pkg install -y curl
98
- curl https://sh.rustup.rs -sSf --output rustup.sh
109
- sh rustup.sh -y
10+
- . $HOME/.cargo/env
11+
- rustup default stable
12+
test_script:
13+
- . $HOME/.cargo/env
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+
- . $HOME/.cargo/env
23+
- rustup default nightly
1124
test_script:
1225
- . $HOME/.cargo/env
13-
- cd libc-test
14-
- cargo test
26+
- sh ci/run.sh x86_64-unknown-freebsd

0 commit comments

Comments
 (0)