File tree 1 file changed +15
-3
lines changed
1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,25 @@ freebsd_instance:
2
2
image : freebsd-11-1-release-amd64
3
3
4
4
task :
5
- # This name gets reported as a build status in GitHub
6
5
name : stable x86_64-unknown-freebsd
7
6
setup_script :
8
7
- pkg install -y curl
9
8
- curl https://sh.rustup.rs -sSf --output rustup.sh
10
9
- 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
11
24
test_script :
12
25
- . $HOME/.cargo/env
13
- - cd libc-test
14
- - cargo test
26
+ - sh ci/run.sh x86_64-unknown-freebsd
You can’t perform that action at this time.
0 commit comments