This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
connectivity/connectivity_macos/example/test_driver/test
google_sign_in/extension_google_sign_in_as_googleapis_auth/example
image_picker/image_picker/example/test_driver/test Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,22 @@ task:
37
37
test_script :
38
38
- flutter channel $CHANNEL
39
39
- ./script/incremental_build.sh test
40
- - name : analyze
40
+ - name : analyze_master
41
41
env :
42
42
matrix :
43
43
CHANNEL : " master"
44
+ script :
45
+ - flutter channel $CHANNEL
46
+ - ./script/incremental_build.sh analyze
47
+ # # TODO(cyanglaz):
48
+ # # Combing stable and master analyze jobs when integration test null safety is ready on flutter stable.
49
+ - name : analyze_stable
50
+ env :
51
+ matrix :
44
52
CHANNEL : " stable"
45
53
script :
46
54
- flutter channel $CHANNEL
55
+ - find . -depth -type d -wholename '*_web/example' -exec rm -rf {} \;
47
56
- ./script/incremental_build.sh analyze
48
57
# ## Android tasks ###
49
58
- name : build_all_plugins_apk
67
76
env :
68
77
matrix :
69
78
CHANNEL : " master"
70
- CHANNEL : " stable"
71
79
build_script :
72
80
- flutter channel $CHANNEL
73
81
- ./script/incremental_build.sh build-examples --web
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style license that can be
3
3
// found in the LICENSE file.
4
4
5
+ // @dart = 2.9
5
6
import 'dart:convert' ;
6
7
import 'dart:io' ;
7
8
import 'package:flutter_driver/flutter_driver.dart' ;
Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ dependencies:
16
16
17
17
dev_dependencies :
18
18
pedantic : ^1.10.0
19
- integration_test :
20
- path : ../../../integration_test
21
- flutter_driver :
22
- sdk : flutter
23
19
24
20
flutter :
25
21
uses-material-design : true
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ // @dart = 2.9
5
6
import 'dart:async' ;
6
7
import 'dart:convert' ;
7
8
import 'dart:io' ;
You can’t perform that action at this time.
0 commit comments