1. 14 Jun, 2016 1 commit
    • Ian Hickson's avatar
      Lock flutter tool while updating artifacts (#4476) · f92f71fe
      Ian Hickson authored
      This prevents multiple simultaneous runs of the analyzer from stomping
      over each other (e.g. multiple runs of 'update-packages'). Certain
      long-lived commands (like analyze, run, logs) are exempted once they've
      done enough work to be safe from most stomping action.
      
      This still doesn't make us entirely safe from craziness, e.g. if you're
      half way through an 'update-packages' run and you call 'git pull', who
      knows what state you'll end up in. But there's only so much one can do.
      
      Fixes https://github.com/flutter/flutter/issues/2762
      f92f71fe
  2. 07 Jun, 2016 1 commit
    • Devon Carew's avatar
      add a restart command to the daemon protocol (#4385) · 3ba17136
      Devon Carew authored
      * refactor the --resident run option into a separate file
      
      * update daemon to run --resident apps
      
      * re-plumbing daemon start
      
      * send app logs
      
      * update tests
      
      * review changes
      
      * fix test runner
      
      * remove PackageMap.createGlobalInstance; rely on the ctor
      
      * review comments
      3ba17136
  3. 28 May, 2016 2 commits
  4. 27 May, 2016 2 commits
  5. 23 May, 2016 1 commit
  6. 20 May, 2016 1 commit
  7. 17 May, 2016 1 commit
  8. 13 May, 2016 2 commits
  9. 12 May, 2016 1 commit
  10. 11 May, 2016 1 commit
  11. 09 May, 2016 1 commit
  12. 03 May, 2016 1 commit
  13. 27 Apr, 2016 1 commit
    • Devon Carew's avatar
      Flutter run (#3553) · b0dca796
      Devon Carew authored
      * rework flutter run
      
      * fix npe with --debug-port
      
      * connect to obs and exit when that conneciton closes
      
      * update todos
      b0dca796
  14. 18 Apr, 2016 1 commit
    • Devon Carew's avatar
      Use arm deploy (#3374) · 12cac94c
      Devon Carew authored
      * download android-arm-deploy
      
      * wire up --deploy to android-arm-deploy
      
      * fix interpolation
      12cac94c
  15. 16 Apr, 2016 1 commit
  16. 13 Apr, 2016 1 commit
  17. 12 Apr, 2016 1 commit
    • Devon Carew's avatar
      add a --deploy flag to build apk (#3249) · 8849cd6b
      Devon Carew authored
      * add a --deploy flag to build apk
      
      * update command description
      
      * use an enum instead of a bool param for build variants
      
      * rename buildForDeploy flag to buildVariant
      
      * review comments
      8849cd6b
  18. 07 Apr, 2016 1 commit
  19. 04 Apr, 2016 1 commit
  20. 29 Mar, 2016 1 commit
    • Yegor Jbanov's avatar
      [driver] fix observatory port # and timeline data extraction · bfa16b2b
      Yegor Jbanov authored
      The way we pick observatory port # has changed and we have broken
      logic that handles port 8181. To fix the buildbot, switch to port
      8182. We can later figure out what we want to do when we clean up
      port handling.
      
      The old VM extention for extracting the timeline data is gone.
      Switch to the new '_getVMTimeline' API.
      bfa16b2b
  21. 28 Mar, 2016 1 commit
  22. 25 Mar, 2016 1 commit
  23. 21 Mar, 2016 1 commit
  24. 17 Mar, 2016 1 commit
  25. 14 Mar, 2016 2 commits
  26. 11 Mar, 2016 2 commits
    • Devon Carew's avatar
      remove some references to DeviceStore · 5ad6a570
      Devon Carew authored
      5ad6a570
    • Ian Hickson's avatar
      Enable ALL THE LINTS · 1b9cd520
      Ian Hickson authored
      Well, all the easy ones, anyway.
      
      For some reason `// ignore:` isn't working for me so I've disabled
      lints that need that. Also disabled those that require a ton of work
      (which I'm doing, but not in this PR, to keep it reviewable).
      
      This adds:
      - avoid_init_to_null
      - library_names
      - package_api_docs
      - package_names
      - package_prefixed_library_names
      - prefer_is_not_empty
      - sort_constructors_first
      - sort_unnamed_constructors_first
      - unnecessary_getters_setters
      1b9cd520
  27. 03 Mar, 2016 1 commit
  28. 01 Mar, 2016 1 commit
  29. 26 Feb, 2016 1 commit
  30. 24 Feb, 2016 1 commit
  31. 23 Feb, 2016 1 commit
    • yjbanov's avatar
      "flutter create" can generate a basic driver test · 278630e6
      yjbanov authored
      "flutter create" adds option `--with-driver-test` that adds
      dependencies to `flutter_driver` in `pubspec.yaml` and creates
      a basic driver test runnable via `flutter drive
      --target=test_driver/e2e.dart`
      
      "flutter drive" new options:
      
      - `--keep-app-running` tells the driver to not stop the app after tests
        are done
      - `--use-existing-app` tells the driver to not start a new app but use
        an already running instance
      278630e6
  32. 20 Feb, 2016 1 commit
    • yjbanov's avatar
      "flutter drive" command · a2b1bd46
      yjbanov authored
      Runs a test app and a driver test simultaneously, then stops the app.
      
      Usage:
      
      ```
      flutter drive --target=/path/to/test/app.dart
      ```
      
      This command will look for `/path/to/test/app_test.dart` by
      convention. We will expand into other ways of discovering tests in the
      future.
      a2b1bd46