Skip to content

Commit 95487b0

Browse files
committed
doc: Drop mentions of Travis CI as it is no longer used
1 parent 09d105e commit 95487b0

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ There are also [regression and integration tests](/test), written
5656
in Python, that are run automatically on the build server.
5757
These tests can be run (if the [test dependencies](/test) are installed) with: `test/functional/test_runner.py`
5858

59-
The Travis CI system makes sure that every pull request is built for Windows, Linux, and macOS, and that unit/sanity tests are run automatically.
59+
The CI (Continuous Integration) systems make sure that every pull request is built for Windows, Linux, and macOS,
60+
and that unit/sanity tests are run automatically.
6061

6162
### Manual Quality Assurance (QA) Testing
6263

doc/developer-notes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ General Bitcoin Core
543543
- *Rationale*: RPC allows for better automatic testing. The test suite for
544544
the GUI is very limited.
545545

546-
- Make sure pull requests pass Travis CI before merging.
546+
- Make sure pull requests pass CI before merging.
547547

548548
- *Rationale*: Makes sure that they pass thorough testing, and that the tester will keep passing
549549
on the master branch. Otherwise, all new pull requests will start failing the tests, resulting in
@@ -1036,7 +1036,7 @@ Scripted diffs
10361036
--------------
10371037

10381038
For reformatting and refactoring commits where the changes can be easily automated using a bash script, we use
1039-
scripted-diff commits. The bash script is included in the commit message and our Travis CI job checks that
1039+
scripted-diff commits. The bash script is included in the commit message and our CI job checks that
10401040
the result of the script is identical to the commit. This aids reviewers since they can verify that the script
10411041
does exactly what it is supposed to do. It is also helpful for rebasing (since the same script can just be re-run
10421042
on the new master commit).

doc/release-process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,9 @@ bitcoin.org (see below for bitcoin.org update instructions).
307307
- First, check to see if the Bitcoin.org maintainers have prepared a
308308
release: https://github.com/bitcoin-dot-org/bitcoin.org/labels/Core
309309

310-
- If they have, it will have previously failed their Travis CI
310+
- If they have, it will have previously failed their CI
311311
checks because the final release files weren't uploaded.
312-
Trigger a Travis CI rebuild---if it passes, merge.
312+
Trigger a CI rebuild---if it passes, merge.
313313

314314
- If they have not prepared a release, follow the Bitcoin.org release
315315
instructions: https://github.com/bitcoin-dot-org/bitcoin.org/blob/master/docs/adding-events-release-notes-and-alerts.md#release-notes

test/functional/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ don't have test cases for.
2323
- The oldest supported Python version is specified in [doc/dependencies.md](/doc/dependencies.md).
2424
Consider using [pyenv](https://github.com/pyenv/pyenv), which checks [.python-version](/.python-version),
2525
to prevent accidentally introducing modern syntax from an unsupported Python version.
26-
The Travis linter also checks this, but [possibly not in all cases](https://github.com/bitcoin/bitcoin/pull/14884#discussion_r239585126).
26+
The CI linter job also checks this, but [possibly not in all cases](https://github.com/bitcoin/bitcoin/pull/14884#discussion_r239585126).
2727
- See [the python lint script](/test/lint/lint-python.sh) that checks for violations that
2828
could lead to bugs and issues in the test code.
2929
- Use [type hints](https://docs.python.org/3/library/typing.html) in your code to improve code readability

0 commit comments

Comments
 (0)