Skip to content

Commit 00b6a4e

Browse files
authored
Remove some miscellaneous references to Cirrus. (#161390)
Towards flutter/flutter#161387. ... made a few TLC changes the best I could.
1 parent 6b8b579 commit 00b6a4e

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

dev/bots/README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22

33
This directory exists to support building Flutter on our build infrastructure.
44

5-
Flutter build results are available at:
6-
* https://flutter-dashboard.appspot.com/#/build
7-
- Aggregate dashboard of the separate CI systems used by Flutter.
8-
* https://cirrus-ci.com/github/flutter/flutter/master
9-
- Testing is done on PRs and submitted changes on GitHub.
5+
Flutter build results are available at: <https://flutter-dashboard.appspot.com>.
106

117
Flutter infra requires special permissions to retrigger builds on the
128
[build dashboard](https://flutter-dashboard.appspot.com/#/build). File an
139
[infra ticket](../../docs/infra/Infra-Ticket-Queue.md) to
1410
request permission.
1511

16-
The [Cirrus](https://cirrus-ci.org)-based bots run the [`test.dart`](test.dart)
17-
script for each PR and submission. This does testing for the tools, for the
18-
framework, and (for submitted changes only) rebuilds and updates the main
19-
branch API docs [staging site](https://main-api.flutter.dev/).
12+
The [LUCI](https://chromium.googlesource.com/infra/luci/luci-py/+/refs/heads/main/README.md)-based
13+
bots run the [`test.dart`](test.dart) script for each PR and submission. This
14+
does testing for the tools, for the framework, and (for submitted changes only)
15+
rebuilds and updates the main branch API docs [staging site](https://main-api.flutter.dev/).
2016
For tagged dev and beta builds, it also builds and deploys the gallery app to
21-
the app stores. It is configured by the [.cirrus.yml](/.cirrus.yml).
17+
the app stores. It is configured by two `.ci.yaml` files:
18+
19+
- framework: [`.ci.yaml`](../../.ci.yaml)
20+
- engine: [`engine/src/flutter/.ci.yaml`](../../engine/src/flutter/.ci.yaml)
2221

2322
The build dashboard includes post-commit testing run on physical devices. See
2423
[//dev/devicelab](../devicelab/README.md) for more information.
@@ -134,7 +133,6 @@ components need to be updated or installed, follow the steps below:
134133
`$ cd ../..`
135134
`$ dev/bots/upload_android_tools.py -t ndk`
136135

137-
138136
## Flutter codelabs build test
139137

140138
The Flutter codelabs exercise Material Components in the form of a

dev/tools/create_api_docs.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ class Configurator {
401401
// show the end of it if there was a problem.
402402
print('${DateTime.now().toUtc()}: Building Flutter docset.');
403403

404-
// If dashing gets stuck, Cirrus will time out the build after an hour, and we
404+
// If dashing gets stuck, LUCI will time out the build after an hour, and we
405405
// never get to see the logs. Thus, we run it in the background and tail the
406406
// logs only if it fails.
407407
final ProcessWrapper result = ProcessWrapper(

docs/contributing/testing/Running-and-writing-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To debug tests in Observatory, use the `--start-paused` option to start the test
4242
paused state and wait for connection from a debugger. This option lets you set breakpoints
4343
before the test runs.
4444

45-
To run analysis and all the tests for the entire Flutter repository, the same way that Cirrus
45+
To run analysis and all the tests for the entire Flutter repository, the same way that LUCI
4646
runs them, run `dart dev/bots/test.dart` and `dart --enable-asserts dev/bots/analyze.dart`.
4747

4848
If you've built your own flutter engine (see [Setting up the Engine development environment](../../engine/contributing/Setting-up-the-Engine-development-environment.md)), you

0 commit comments

Comments
 (0)