File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -76,21 +76,21 @@ add a test that would have failed without the fix.
76
76
77
77
After you've made your change, make sure the tests pass in your development
78
78
environment. We also have [ continuous integration set up on
79
- Travis -CI] [ travis -ci] , which might find some issues on other platforms. The CI
79
+ Cirrus -CI] [ cirrus -ci] , which might find some issues on other platforms. The CI
80
80
will run once you open a pull request.
81
81
82
82
There is also infrastructure for running tests for other targets
83
83
locally. More information is available in the [ CI Readme] [ ci-readme ] .
84
84
85
- [ travis -ci] : https://travis -ci.org /nix-rust/nix
85
+ [ cirrus -ci] : https://cirrus -ci.com/github /nix-rust/nix
86
86
[ ci-readme ] : ci/README.md
87
87
88
88
### Disabling a test in the CI environment
89
89
90
90
Sometimes there are features that cannot be tested in the CI environment.
91
- To stop a test from running under CI, add ` #[cfg_attr(travis, ignore)] `
92
- to it. Please include a comment describing the reason it shouldn't run
93
- under CI, and a link to an upstream issue if possible!
91
+ To stop a test from running under CI, add ` skip_if_cirrus!() ` to it. Please
92
+ describe the reason it shouldn't run under CI, and a link to an issue if
93
+ possible!
94
94
95
95
## bors, the bot who merges all the PRs
96
96
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "MIT"
9
9
categories = [" os::unix-apis" ]
10
10
exclude = [
11
11
" /.gitignore" ,
12
- " /.travis .yml" ,
12
+ " /.cirrus .yml" ,
13
13
" /ci/*" ,
14
14
" /Cross.toml" ,
15
15
" /RELEASE_PROCEDURE.md" ,
Original file line number Diff line number Diff line change 1
1
# Rust bindings to * nix APIs
2
2
3
- [ ![ Travis Build Status] ( https://travis-ci.org/nix-rust/nix.svg?branch=master )] ( https://travis-ci.org/nix-rust/nix )
4
3
[ ![ Cirrus Build Status] ( https://api.cirrus-ci.com/github/nix-rust/nix.svg )] ( https://cirrus-ci.com/github/nix-rust/nix )
5
4
[ ![ crates.io] ( http://meritbadge.herokuapp.com/nix )] ( https://crates.io/crates/nix )
6
5
Original file line number Diff line number Diff line change 1
- # Gate on Travis CI and Buildbot
2
1
status = [
3
2
" FreeBSD amd64 & i686" ,
4
3
" OSX x86_64" ,
@@ -34,10 +33,10 @@ status = [
34
33
# Set bors's timeout to 1 hour
35
34
#
36
35
# bors's timeout should always be at least twice as long as the test suite
37
- # takes. This is to allow Travis to fast-fail a test; if one of the builders
38
- # immediately reports a failure, then bors will move on to the next batch,
39
- # leaving the slower builders to work through the already-doomed run and the
40
- # next one.
36
+ # takes. This is to allow the CI provider to fast-fail a test; if one of the
37
+ # builders immediately reports a failure, then bors will move on to the next
38
+ # batch, leaving the slower builders to work through the already-doomed run and
39
+ # the next one.
41
40
#
42
41
# At the time this was written, nix's test suite took about twenty minutes to
43
42
# run. The timeout was raised to one hour to give nix room to grow and time
You can’t perform that action at this time.
0 commit comments