Skip to content

Commit e485c14

Browse files
committed
s/Travis/Buildkite/
1 parent 95fee94 commit e485c14

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Everyone interacting in Rails and its sub-projects' codebases, issue trackers, c
9797

9898
## Code Status
9999

100-
[![Build Status](https://travis-ci.org/rails/rails.svg?branch=master)](https://travis-ci.org/rails/rails)
100+
[![Build Status](https://badge.buildkite.com/ab1152b6a1f6a61d3ea4ec5b3eece8d4c2b830998459c75352.svg?branch=master)](https://buildkite.com/rails/rails)
101101

102102
## License
103103

RELEASING_RAILS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Today is mostly coordination tasks. Here are the things you must do today:
1414
Do not release with a Red CI. You can find the CI status here:
1515

1616
```
17-
https://travis-ci.org/rails/rails
17+
https://buildkite.com/rails/rails
1818
```
1919

2020
### Is Sam Ruby happy? If not, make him happy.

actioncable/karma.conf.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ if (process.env.CI) {
5252
}
5353

5454
function buildId() {
55-
const { TRAVIS_BUILD_NUMBER, TRAVIS_BUILD_ID } = process.env
56-
return TRAVIS_BUILD_NUMBER && TRAVIS_BUILD_ID
57-
? `TRAVIS #${TRAVIS_BUILD_NUMBER} (${TRAVIS_BUILD_ID})`
55+
const { BUILDKITE_JOB_ID } = process.env
56+
return BUILDKITE_JOB_ID
57+
? `Buildkite ${BUILDKITE_JOB_ID}`
5858
: ""
5959
}
6060
}

guides/source/contributing_to_ruby_on_rails.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ the recommended workflow with the [rails-dev-box](https://github.com/rails/rails
302302
As a compromise, test what your code obviously affects, and if the change is
303303
not in railties, run the whole test suite of the affected component. If all
304304
tests are passing, that's enough to propose your contribution. We have
305-
[Travis CI](https://travis-ci.org/rails/rails) as a safety net for catching
305+
[Buildkite](https://buildkite.com/rails/rails) as a safety net for catching
306306
unexpected breakages elsewhere.
307307

308308
#### Entire Rails:
@@ -418,7 +418,7 @@ To run a single test against all adapters, use:
418418
$ bundle exec rake TEST=test/cases/associations/has_many_associations_test.rb
419419
```
420420

421-
You can invoke `test_jdbcmysql`, `test_jdbcsqlite3` or `test_jdbcpostgresql` also. See the file `activerecord/RUNNING_UNIT_TESTS.rdoc` for information on running more targeted database tests, or the file `ci/travis.rb` for the test suite run by the continuous integration server.
421+
You can invoke `test_jdbcmysql`, `test_jdbcsqlite3` or `test_jdbcpostgresql` also. See the file `activerecord/RUNNING_UNIT_TESTS.rdoc` for information on running more targeted database tests.
422422

423423
### Warnings
424424

@@ -677,7 +677,7 @@ $ git apply ~/my_changes.patch
677677

678678
This works well for simple changes. However, if your changes are complicated or if the code in master has deviated significantly from your target branch, it might require more work on your part. The difficulty of a backport varies greatly from case to case, and sometimes it is simply not worth the effort.
679679

680-
Once you have resolved all conflicts and made sure all the tests are passing, push your changes and open a separate pull request for your backport. It is also worth noting that older branches might have a different set of build targets than master. When possible, it is best to first test your backport locally against the Ruby versions listed in `.travis.yml` before submitting your pull request.
680+
Once you have resolved all conflicts and made sure all the tests are passing, push your changes and open a separate pull request for your backport. It is also worth noting that older branches might have a different set of build targets than master. When possible, it is best to first test your backport locally against the oldest Ruby version permitted by the target branch's `rails.gemspec` before submitting your pull request.
681681

682682
And then... think about your next contribution!
683683

0 commit comments

Comments
 (0)