Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 1 | Contributing to Flutter |
| 2 | ======================= |
| 3 | |
| 4 | [](https://travis-ci.org/flutter/flutter) |
| 5 | |
Ian Hickson | cffe481 | 2016-12-10 21:46:57 -0800 | [diff] [blame] | 6 | _See also: [Flutter's code of conduct](https://flutter.io/design-principles/#code-of-conduct)_ |
| 7 | |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 8 | Things you will need |
| 9 | -------------------- |
| 10 | |
Michael Goderbauer | 13edb32 | 2017-06-26 09:47:05 -0700 | [diff] [blame] | 11 | * Linux, Mac OS X, or Windows |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 12 | * git (used for source version control). |
Adam Barth | f68343e | 2017-02-08 20:50:29 -0800 | [diff] [blame] | 13 | * An IDE. We recommend [IntelliJ with the Flutter plugin](https://flutter.io/intellij-ide/). |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 14 | * An ssh client (used to authenticate with GitHub). |
| 15 | * Python (used by some of our tools). |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 16 | * The Android platform tools (see [Issue #55](https://github.com/flutter/flutter/issues/55) |
Adam Barth | f4c62a8 | 2015-11-08 22:18:16 -0800 | [diff] [blame] | 17 | about downloading the Android platform tools automatically). |
Ian Hickson | 8268664 | 2016-02-08 13:39:24 -0800 | [diff] [blame] | 18 | _If you're also working on the Flutter engine, you can use the |
Adam Barth | f4c62a8 | 2015-11-08 22:18:16 -0800 | [diff] [blame] | 19 | copy of the Android platform tools in |
Ian Hickson | 8268664 | 2016-02-08 13:39:24 -0800 | [diff] [blame] | 20 | `.../engine/src/third_party/android_tools/sdk/platform-tools`._ |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 21 | - Mac: `brew install android-platform-tools` |
| 22 | - Linux: `sudo apt-get install android-tools-adb` |
| 23 | |
| 24 | Getting the code and configuring your environment |
| 25 | ------------------------------------------------- |
| 26 | |
| 27 | * Ensure all the dependencies described in the previous section, in particular |
Ian Hickson | e23d760 | 2016-02-15 10:46:24 -0800 | [diff] [blame] | 28 | git, ssh, and python are installed. Ensure that `adb` |
| 29 | (from the Android platform tools) is in your path (e.g., |
| 30 | that `which adb` prints sensible output). |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 31 | * Fork `https://github.com/flutter/flutter` into your own GitHub account. If |
| 32 | you already have a fork, and are now installing a development environment on |
| 33 | a new machine, make sure you've updated your fork so that you don't use stale |
| 34 | configuration options from long ago. |
| 35 | * If you haven't configured your machine with an SSH key that's known to github then |
| 36 | follow the directions here: https://help.github.com/articles/generating-ssh-keys/. |
| 37 | * `git clone git@github.com:<your_name_here>/flutter.git` |
| 38 | * `cd flutter` |
| 39 | * `git remote add upstream git@github.com:flutter/flutter.git` (So that you |
| 40 | fetch from the master repository, not your clone, when running `git fetch` |
| 41 | et al.) |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 42 | * Add this repository's `bin` directory to your path. That will let you use the |
Ian Hickson | e23d760 | 2016-02-15 10:46:24 -0800 | [diff] [blame] | 43 | `flutter` command in this directory more easily. |
Lex Berezhny | 778742e | 2016-02-27 12:35:05 -0500 | [diff] [blame] | 44 | * Run `flutter update-packages` This will fetch all the Dart packages that |
| 45 | Flutter depends on. You can replicate what this script does by running |
| 46 | `pub get` in each directory that contains a `pubspec.yaml` file. |
Greg Spencer | 797b39e | 2017-11-13 10:55:22 -0800 | [diff] [blame] | 47 | * If you plan on using IntelliJ as your IDE, then also run |
| 48 | `flutter ide-config --overwrite` to create all of the IntelliJ configuration |
| 49 | files so you can open the main flutter directory as a project and run examples |
| 50 | from within the IDE. |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 51 | |
| 52 | Running the examples |
| 53 | -------------------- |
| 54 | |
Greg Spencer | 797b39e | 2017-11-13 10:55:22 -0800 | [diff] [blame] | 55 | To run an example, switch to that example's directory, and use `flutter run`. |
| 56 | Make sure you have an emulator running, or a device connected over USB and |
| 57 | debugging enabled on that device. |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 58 | |
Ali Ghassemi | 53c86e0 | 2016-05-20 13:06:03 -0700 | [diff] [blame] | 59 | * `cd examples/hello_world` |
| 60 | * `flutter run` |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 61 | |
| 62 | You can also specify a particular Dart file to run if you want to run an example |
| 63 | that doesn't have a `lib/main.dart` file using the `-t` command-line option. For |
Ali Ghassemi | 705b5d1 | 2016-05-20 13:53:18 -0700 | [diff] [blame] | 64 | example, to run the `widgets/spinning_square.dart` example in the [examples/layers](examples/layers) |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 65 | directory on a connected Android device, from that directory you would run: |
Ali Ghassemi | 53c86e0 | 2016-05-20 13:06:03 -0700 | [diff] [blame] | 66 | `flutter run -t widgets/spinning_square.dart` |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 67 | |
| 68 | When running code from the examples directory, any changes you make to the |
| 69 | example code, as well as any changes to Dart code in the |
| 70 | [packages/flutter](packages/flutter) directory and subdirectories, will |
| 71 | automatically be picked when you relaunch the app. You can do the same for your |
| 72 | own code by mimicking the `pubspec.yaml` files in the `examples` subdirectories. |
| 73 | |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 74 | Running the analyzer |
| 75 | -------------------- |
| 76 | |
Ian Hickson | 36e7138 | 2017-09-23 22:23:09 -0700 | [diff] [blame] | 77 | When editing Flutter code, it's important to check the code with the |
| 78 | analyzer. There are two main ways to run it. In either case you will |
| 79 | want to run `flutter update-packages` first, or you will get bogus |
| 80 | error messages about core classes like Offset from `dart:ui`. |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 81 | |
Dan Rubel | 3a31c35 | 2017-08-15 08:46:42 -0400 | [diff] [blame] | 82 | For a one-off, use `flutter analyze --flutter-repo`. This uses the `analysis_options_repo.yaml` file |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 83 | at the root of the repository for its configuration. |
| 84 | |
| 85 | For continuous analysis, use `flutter analyze --flutter-repo --watch`. This uses normal |
Dan Rubel | 3a31c35 | 2017-08-15 08:46:42 -0400 | [diff] [blame] | 86 | `analysis_options.yaml` files, and they can differ from package to package. |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 87 | |
| 88 | If you want to see how many members are missing dartdocs, you should use the first option, |
| 89 | providing the additional command `--dartdocs`. |
| 90 | |
| 91 | If you omit the `--flutter-repo` option you may end up in a confusing state because that will |
| 92 | assume you want to check a single package and the flutter repository has several packages. |
| 93 | |
| 94 | |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 95 | Running the tests |
| 96 | ----------------- |
| 97 | |
Seth Ladd | d6dad95 | 2018-01-26 16:34:08 -0800 | [diff] [blame] | 98 | To automatically find all files named `_test.dart` inside a package's `test/` subdirectory, and |
| 99 | run them inside the flutter shell as a test, use the `flutter test` command, e.g: |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 100 | |
Eric Seidel | 723e5f7 | 2015-12-08 14:09:47 -0800 | [diff] [blame] | 101 | * `cd examples/stocks` |
Eric Seidel | 724388d | 2015-12-08 13:51:05 -0800 | [diff] [blame] | 102 | * `flutter test` |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 103 | |
Eric Seidel | 723e5f7 | 2015-12-08 14:09:47 -0800 | [diff] [blame] | 104 | Individual tests can also be run directly, e.g. `flutter test lib/my_app_test.dart` |
| 105 | |
Seth Ladd | d6dad95 | 2018-01-26 16:34:08 -0800 | [diff] [blame] | 106 | Flutter tests use [package:flutter_test](https://github.com/flutter/flutter/tree/master/packages/flutter_test) |
| 107 | which provides flutter-specific extensions on top of [package:test](https://pub.dartlang.org/packages/test). |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 108 | |
Seth Ladd | d6dad95 | 2018-01-26 16:34:08 -0800 | [diff] [blame] | 109 | `flutter test` runs tests inside the flutter shell. To debug tests in Observatory, use the `--start-paused` |
| 110 | option to start the test in a paused state and wait for connection from a debugger. This option lets you |
| 111 | set breakpoints before the test runs. |
Eric Seidel | 723e5f7 | 2015-12-08 14:09:47 -0800 | [diff] [blame] | 112 | |
Michael Goderbauer | 32271e9 | 2017-02-08 13:00:44 -0800 | [diff] [blame] | 113 | To run all the tests for the entire Flutter repository, the same way that Travis runs them, run `dart dev/bots/test.dart`. |
Eric Seidel | 723e5f7 | 2015-12-08 14:09:47 -0800 | [diff] [blame] | 114 | |
Seth Ladd | d6dad95 | 2018-01-26 16:34:08 -0800 | [diff] [blame] | 115 | If you've built [your own flutter engine](#working-on-the-engine-and-the-framework-at-the-same-time), you |
| 116 | can pass `--local-engine` to change what flutter shell `flutter test` uses. For example, |
Adam Barth | b400250 | 2016-05-31 10:28:25 -0700 | [diff] [blame] | 117 | if you built an engine in the `out/host_debug_unopt` directory, you can pass |
| 118 | `--local-engine=host_debug_unopt` to run the tests in that engine. |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 119 | |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 120 | Flutter tests are headless, you won't see any UI. You can use |
Ian Hickson | 3419068 | 2015-11-09 00:30:45 -0800 | [diff] [blame] | 121 | `print` to generate console output or you can interact with the DartVM |
| 122 | via observatory at [http://localhost:8181/](http://localhost:8181/). |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 123 | |
| 124 | Adding a test |
| 125 | ------------- |
| 126 | |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 127 | To add a test to the Flutter package, create a file whose name |
Ian Hickson | 7151fdd | 2015-12-15 22:32:45 -0800 | [diff] [blame] | 128 | ends with `_test.dart` in the `packages/flutter/test` directory. The |
| 129 | test should have a `main` function and use the `test` package. |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 130 | |
xster | 606ee36 | 2017-01-25 19:00:06 -0800 | [diff] [blame] | 131 | Working with flutter tools |
| 132 | -------------------------- |
| 133 | |
krisgiesing | b6185b6 | 2017-10-05 16:34:16 -0700 | [diff] [blame] | 134 | The flutter tool itself is built when you run `flutter` for the first time and each time |
xster | 606ee36 | 2017-01-25 19:00:06 -0800 | [diff] [blame] | 135 | you run `flutter upgrade`. If you want to alter and re-test the tool's behavior itself, |
| 136 | locally commit your tool changes in git and the tool will be rebuilt from Dart sources |
| 137 | in `packages/flutter_tools` the next time you run `flutter`. |
| 138 | |
Michael Goderbauer | 7532a99 | 2017-08-10 08:46:56 -0700 | [diff] [blame] | 139 | Alternatively, delete the `bin/cache/flutter_tools.snapshot` file. Doing so will |
| 140 | force a rebuild of the tool from your local sources the next time you run `flutter`. |
| 141 | |
xster | 606ee36 | 2017-01-25 19:00:06 -0800 | [diff] [blame] | 142 | flutter_tools' tests run inside the Dart command line VM rather than in the |
Phil Quitslund | 82e1882 | 2017-12-14 06:01:28 -0800 | [diff] [blame] | 143 | flutter shell. To run the tests, ensure that no devices are connected, |
| 144 | then navigate to `flutter_tools` and execute: |
xster | 606ee36 | 2017-01-25 19:00:06 -0800 | [diff] [blame] | 145 | |
Phil Quitslund | 82e1882 | 2017-12-14 06:01:28 -0800 | [diff] [blame] | 146 | ```shell |
Mikkel Nygaard Ravn | 9bc048c | 2018-02-08 22:15:08 +0100 | [diff] [blame] | 147 | ../../bin/cache/dart-sdk/bin/pub run test -j1 |
Phil Quitslund | 82e1882 | 2017-12-14 06:01:28 -0800 | [diff] [blame] | 148 | ``` |
xster | 606ee36 | 2017-01-25 19:00:06 -0800 | [diff] [blame] | 149 | |
| 150 | The pre-built flutter tool runs in release mode with the observatory off by default. |
| 151 | To enable debugging mode and the observatory on the `flutter` tool, uncomment the |
| 152 | `FLUTTER_TOOL_ARGS` line in the `bin/flutter` shell script. |
| 153 | |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 154 | Contributing code |
| 155 | ----------------- |
| 156 | |
| 157 | We gladly accept contributions via GitHub pull requests. |
| 158 | |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 159 | Please peruse our |
| 160 | [style guides](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) and |
| 161 | [design principles](https://flutter.io/design-principles/) before |
| 162 | working on anything non-trivial. These guidelines are intended to |
| 163 | keep the code consistent and avoid common pitfalls. |
| 164 | |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 165 | To start working on a patch: |
| 166 | |
| 167 | * `git fetch upstream` |
| 168 | * `git checkout upstream/master -b name_of_your_branch` |
Ian Hickson | 895aaa9 | 2016-12-15 15:59:57 -0800 | [diff] [blame] | 169 | * Hack away. |
Ian Hickson | 3419068 | 2015-11-09 00:30:45 -0800 | [diff] [blame] | 170 | * `git commit -a -m "<your informative commit message>"` |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 171 | * `git push origin name_of_your_branch` |
| 172 | |
| 173 | To send us a pull request: |
| 174 | |
| 175 | * `git pull-request` (if you are using [Hub](http://github.com/github/hub/)) or |
| 176 | go to `https://github.com/flutter/flutter` and click the |
| 177 | "Compare & pull request" button |
| 178 | |
| 179 | Please make sure all your checkins have detailed commit messages explaining the patch. |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 180 | |
Ian Hickson | be9dd4b | 2017-07-13 10:23:29 -0700 | [diff] [blame] | 181 | Once you've gotten an LGTM from a project maintainer and once your PR has received |
| 182 | the green light from all our automated testing (Travis, Appveyor, etc), and once |
| 183 | the tree is green (see the [design principles](https://flutter.io/design-principles/) |
| 184 | document for more details), submit your changes to the `master` branch using one of |
| 185 | the following methods: |
yjbanov | 15e7bdb | 2016-02-02 11:17:16 -0800 | [diff] [blame] | 186 | |
Ali Ghassemi | 53c86e0 | 2016-05-20 13:06:03 -0700 | [diff] [blame] | 187 | * Wait for one of the project maintainers to submit it for you. |
yjbanov | 15e7bdb | 2016-02-02 11:17:16 -0800 | [diff] [blame] | 188 | * Click the green "Merge pull request" button on the GitHub UI of your pull |
| 189 | request (requires commit access) |
yjbanov | 15e7bdb | 2016-02-02 11:17:16 -0800 | [diff] [blame] | 190 | |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 191 | You must complete the |
| 192 | [Contributor License Agreement](https://cla.developers.google.com/clas). |
| 193 | You can do this online, and it only takes a minute. |
| 194 | If you've never submitted code before, you must add your (or your |
| 195 | organization's) name and contact info to the [AUTHORS](AUTHORS) file. |
| 196 | |
Ian Hickson | cffe481 | 2016-12-10 21:46:57 -0800 | [diff] [blame] | 197 | We grant commit access to people who have gained our trust and demonstrated |
| 198 | a commitment to Flutter. |
| 199 | |
krisgiesing | b6185b6 | 2017-10-05 16:34:16 -0700 | [diff] [blame] | 200 | Tools for tracking and improving test coverage |
| 201 | ---------------------------------------------- |
Adam Barth | 56039c0 | 2016-06-23 13:43:42 -0700 | [diff] [blame] | 202 | |
| 203 | We strive for a high degree of test coverage for the Flutter framework. We use |
| 204 | Coveralls to [track our test coverage](https://coveralls.io/github/flutter/flutter?branch=master). |
| 205 | You can download our current coverage data from cloud storage and visualize it |
| 206 | in Atom as follows: |
| 207 | |
Adam Barth | 428023c | 2017-02-08 10:56:03 -0800 | [diff] [blame] | 208 | * Install [Atom](https://atom.io/). |
Adam Barth | 56039c0 | 2016-06-23 13:43:42 -0700 | [diff] [blame] | 209 | * Install the [lcov-info](https://atom.io/packages/lcov-info) package for Atom. |
Adam Barth | 10931af | 2016-06-23 16:31:25 -0700 | [diff] [blame] | 210 | * Open the `packages/flutter` folder in Atom. |
| 211 | * Open a Dart file in the `lib` directory an type `Ctrl+Alt+C` to bring up the |
| 212 | coverage data. |
| 213 | |
| 214 | If you don't see any coverage data, check that you have an `lcov.info` file in |
| 215 | the `packages/flutter/coverage` directory. It should have been downloaded by the |
| 216 | `flutter update-packages` command you ran previously. |
Adam Barth | 56039c0 | 2016-06-23 13:43:42 -0700 | [diff] [blame] | 217 | |
Adam Barth | 46da9e8 | 2016-06-23 18:02:55 -0700 | [diff] [blame] | 218 | If you want to iterate quickly on improving test coverage, consider using this |
| 219 | workflow: |
| 220 | |
| 221 | * Open a file and observe that some line is untested. |
| 222 | * Write a test that exercises that line. |
| 223 | * Run `flutter test --merge-coverage path/to/your/test_test.dart`. |
| 224 | * After the test passes, observe that the line is now tested. |
| 225 | |
| 226 | This workflow merges the coverage data from this test run with the base coverage |
| 227 | data downloaded by `flutter update-packages`. |
| 228 | |
Adam Barth | 56039c0 | 2016-06-23 13:43:42 -0700 | [diff] [blame] | 229 | See [issue 4719](https://github.com/flutter/flutter/issues/4719) for ideas about |
| 230 | how to improve this workflow. |
| 231 | |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 232 | Working on the engine and the framework at the same time |
| 233 | -------------------------------------------------------- |
| 234 | |
| 235 | You can work both with this repository (flutter.git) and the Flutter |
| 236 | [engine repository](https://github.com/flutter/engine) at the same time using |
| 237 | the following steps. |
| 238 | |
| 239 | 1. Follow the instructions above for creating a working copy of this repository. |
| 240 | |
| 241 | 2. Follow the [contributing instructions](https://github.com/flutter/engine/blob/master/CONTRIBUTING.md) |
| 242 | for the engine repository to create a working copy of the engine. When you |
| 243 | create the `.gclient` file for the engine, be sure to create it in a |
| 244 | directory named `engine` that is a sibling of the directory in which you |
| 245 | cloned this repository. For example, if you cloned this repository into the |
| 246 | `/foo/bar/flutter` directory, you should create the `.gclient` file in the |
| 247 | `/foo/bar/engine` directory. The actual code from the engine repository will |
| 248 | end up in `/foo/bar/engine/src` because `gclient` creates a `src` directory |
| 249 | underneath the directory that contains the `.gclient` file. |
| 250 | |
| 251 | 3. To run tests on your host machine, build one of the host configurations |
Adam Barth | b400250 | 2016-05-31 10:28:25 -0700 | [diff] [blame] | 252 | (e.g., `out/host_debug_unopt`). To run examples on Android, build one of the |
| 253 | Android configurations (e.g., `out/android_debug_unopt`). |
Alexander Aprelev | 5373a83 | 2017-09-07 13:13:48 -0700 | [diff] [blame] | 254 | When running on the device with `--preview-dart-2` flag you will still need |
| 255 | to build corresponding host configuration (e.g., `out/host_debug_unopt` if you |
| 256 | are using `out/android_debug_unopt`, `out/host_release` if you use `out/android_release`). |
| 257 | Host configuration provides standalone dart sdk for the engine, that is used |
| 258 | to run engine dart scripts on the host. |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 259 | |
Ian Hickson | 3419068 | 2015-11-09 00:30:45 -0800 | [diff] [blame] | 260 | You should now be able to run the tests against your locally built |
Adam Barth | b400250 | 2016-05-31 10:28:25 -0700 | [diff] [blame] | 261 | engine using the `flutter test --local-engine=host_debug_unopt` command. To run |
| 262 | one of the examples on your device using your locally built engine, use the |
| 263 | `--local-engine=android_debug_unopt` option to the `flutter` tool: |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 264 | |
Adam Barth | b400250 | 2016-05-31 10:28:25 -0700 | [diff] [blame] | 265 | * `flutter run --local-engine=android_debug_unopt` |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 266 | |
| 267 | Making a breaking change to the engine |
| 268 | -------------------------------------- |
| 269 | |
krisgiesing | 3dfdf4b | 2016-03-15 13:16:48 -0700 | [diff] [blame] | 270 | If you make a breaking change to the engine, you'll need to land your change in a |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 271 | few steps: |
| 272 | |
| 273 | 1. Land your change in the engine repository. |
| 274 | |
| 275 | 2. Publish a new version of the engine that contains your change. See the |
| 276 | engine's [release process](https://github.com/flutter/engine/wiki/Release-process) |
| 277 | for instructions about how to publish a new version of the engine. Publishing |
| 278 | a new version is important in order to not break folks using prebuilt |
| 279 | binaries in their workflow (e.g., our customers). |
| 280 | |
| 281 | 3. Land a change that update our dependency on the `sky_engine` and |
| 282 | `sky_services` packages to point to the new version of the engine that you |
| 283 | just published. These dependencies are defined by [packages/flutter/pubspec.yaml](packages/flutter/pubspec.yaml). |
| 284 | After changing the `pubspec.yaml` file, you'll need to run |
Jason Simmons | 587a6e8 | 2015-11-10 16:06:09 -0800 | [diff] [blame] | 285 | `./dev/update_packages.dart` to update all the packages in this repository to |
Adam Barth | 576795d | 2015-11-08 21:33:00 -0800 | [diff] [blame] | 286 | see the new dependency. As part of landing this change, you should make |
| 287 | whatever other changes are needed in this repository to account for your |
| 288 | breaking change. |
Mikkel Nygaard Ravn | 9bc048c | 2018-02-08 22:15:08 +0100 | [diff] [blame] | 289 | |
Seth Ladd | d6dad95 | 2018-01-26 16:34:08 -0800 | [diff] [blame] | 290 | API docs for master branch |
| 291 | -------------------------- |
| 292 | |
| 293 | To view the API docs for the `master` branch, |
| 294 | visit https://master-docs-flutter-io.firebaseapp.com/. |
| 295 | |
| 296 | Those docs should be updated after a successful CI build |
| 297 | of Flutter's `master` branch. |
| 298 | |
| 299 | (Looking for the API docs for our releases? |
| 300 | Please visit https://docs.flutter.io.) |
Yegor | bf4409f | 2017-12-06 17:30:44 -0800 | [diff] [blame] | 301 | |
| 302 | Build infrastructure |
| 303 | -------------------- |
| 304 | |
| 305 | We build and test Flutter on: |
| 306 | |
| 307 | - Travis ([details](.travis.yml)) |
| 308 | - AppVeyor ([details](appveyor.yml)) |
| 309 | - Chromebots (a.k.a. "recipes", [details](dev/bots/README.md)) |
Leaf Petersen | 1dca1b2 | 2018-01-11 08:55:14 -0800 | [diff] [blame] | 310 | - Devicelab (a.k.a. "cocoon", [details](dev/devicelab/README.md)) |