ci: Use general terms for CircleCI.

GitHub Actions supports doing more than just CI,
and so in some contexts it's less obvious that we're
talking about just the CI if we refer to it instead of CircleCI.
This commit is contained in:
Aman Agrawal 2021-03-15 17:37:12 +00:00 committed by Tim Abbott
parent f79a59d5f8
commit 59c8f3ed92
5 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@ -34,7 +34,7 @@ package-lock.json
/.dmypy.json
# Dockerfiles generated for CircleCI
# Dockerfiles generated for continuous integration
/tools/ci/images
# Generated i18n data

View File

@ -8,7 +8,7 @@
{% if pagename in ["production/postgresql", "production/video-calls"] and release.endswith('+git') %}
{#
# This page doesn't exist in the stable documentation yet.
# This temporary workaround prevents CircleCI failure and should be removed after the next release.
# This temporary workaround prevents test failures and should be removed after the next release.
#}
<div class="admonition warning">
<p class="first admonition-title">Warning</p>

View File

@ -51,7 +51,7 @@ note are:
* `--skip` and `--only`: Only run certain linters.
* `-m`: Only check modified files.
Finally, you can rely on our CircleCI setup to run linters for you,
Finally, you can rely on our continuous integration setup to run linters for you,
but it is good practice to run lint checks locally.
```eval_rst

View File

@ -296,7 +296,7 @@ def main(options: argparse.Namespace) -> int:
run(["tools/setup/postgresql-init-dev-db"])
if options.skip_dev_db_build:
# We don't need to build the manual development
# database on CircleCI for running tests, so we can
# database on continuous integration for running tests, so we can
# just leave it as a template db and save a minute.
#
# Important: We don't write a digest as that would

View File

@ -376,7 +376,7 @@ def main() -> None:
cov = coverage.Coverage(
data_suffix="", config_file="tools/coveragerc", concurrency="multiprocessing"
)
# Do not clean .coverage file in CircleCi job so that coverage data can be uploaded.
# Do not clean .coverage file in continuous integration job so that coverage data can be uploaded.
if not options.no_cov_cleanup:
import atexit