File tree 3 files changed +16
-6
lines changed
3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 11
11
upgrade_script :
12
12
- flutter channel stable
13
13
- flutter upgrade
14
+ - flutter channel beta
15
+ - flutter upgrade
14
16
- flutter channel master
15
17
- flutter upgrade
16
18
- git fetch origin master
33
35
env :
34
36
matrix :
35
37
CHANNEL : " master"
38
+ CHANNEL : " beta"
36
39
CHANNEL : " stable"
37
40
test_script :
38
41
# TODO(jackson): Allow web plugins once supported on stable
@@ -44,12 +47,14 @@ task:
44
47
env :
45
48
matrix :
46
49
CHANNEL : " master"
50
+ CHANNEL : " beta"
47
51
CHANNEL : " stable"
48
52
script : ./script/incremental_build.sh analyze
49
53
- name : build_all_plugins_apk
50
54
env :
51
55
matrix :
52
56
CHANNEL : " master"
57
+ CHANNEL : " beta"
53
58
CHANNEL : " stable"
54
59
script :
55
60
# TODO(jackson): Allow web plugins once supported on stable
79
84
PLUGIN_SHARDING : " --shardIndex 3 --shardCount 4"
80
85
matrix :
81
86
CHANNEL : " master"
87
+ CHANNEL : " beta"
82
88
CHANNEL : " stable"
83
89
MAPS_API_KEY : ENCRYPTED[596a9f6bca436694625ac50851dc5da6b4d34cba8025f7db5bc9465142e8cd44e15f69e3507787753accebfc4910d550]
84
90
GCLOUD_FIREBASE_TESTLAB_KEY : ENCRYPTED[07586610af1fdfc894e5969f70ef2458341b9b7e9c3b7c4225a663b4a48732b7208a4d91c3b7d45305a6b55fa2a37fc4]
@@ -121,6 +127,8 @@ task:
121
127
upgrade_script :
122
128
- flutter channel stable
123
129
- flutter upgrade
130
+ - flutter channel beta
131
+ - flutter upgrade
124
132
- flutter channel master
125
133
- flutter upgrade
126
134
- git fetch origin master
@@ -148,6 +156,8 @@ task:
148
156
- sudo gem install cocoapods
149
157
- flutter channel stable
150
158
- flutter upgrade
159
+ - flutter channel beta
160
+ - flutter upgrade
151
161
- flutter channel master
152
162
- flutter upgrade
153
163
- git fetch origin master
@@ -162,6 +172,7 @@ task:
162
172
env :
163
173
matrix :
164
174
CHANNEL : " master"
175
+ CHANNEL : " beta"
165
176
CHANNEL : " stable"
166
177
script :
167
178
# TODO(jackson): Allow web plugins once supported on stable
@@ -180,6 +191,7 @@ task:
180
191
PLUGIN_SHARDING : " --shardIndex 3 --shardCount 4"
181
192
matrix :
182
193
CHANNEL : " master"
194
+ CHANNEL : " beta"
183
195
CHANNEL : " stable"
184
196
SIMCTL_CHILD_MAPS_API_KEY : ENCRYPTED[596a9f6bca436694625ac50851dc5da6b4d34cba8025f7db5bc9465142e8cd44e15f69e3507787753accebfc4910d550]
185
197
build_script :
Original file line number Diff line number Diff line change @@ -54,13 +54,11 @@ readonly EXCLUDED_PLUGINS_LIST=(
54
54
readonly EXCLUDED=$( IFS=, ; echo " ${EXCLUDED_PLUGINS_LIST[*]} " )
55
55
56
56
ALL_EXCLUDED=($EXCLUDED )
57
- # Exclude nnbd plugins from stable.
57
+ # Exclude nnbd plugins from stable, and conflicting plugins otherwise .
58
58
if [ " $CHANNEL " == " stable" ]; then
59
59
ALL_EXCLUDED=(" $EXCLUDED ,$EXCLUDED_PLUGINS_FROM_STABLE " )
60
- fi
61
- # Exclude non-nnbd plugins from master.
62
- if [ " $CHANNEL " != " stable" ]; then
63
- ALL_EXCLUDED=(" $EXCLUDED ,$EXCLUDED_PLUGINS_FROM_MASTER " )
60
+ else
61
+ ALL_EXCLUDED=(" $EXCLUDED ,$EXCLUDED_PLUGINS_FOR_NNBD " )
64
62
fi
65
63
66
64
echo " Excluding the following plugins: $ALL_EXCLUDED "
Original file line number Diff line number Diff line change @@ -48,4 +48,4 @@ readonly NON_NNBD_PLUGINS_LIST=(
48
48
)
49
49
50
50
export EXCLUDED_PLUGINS_FROM_STABLE=$( IFS=, ; echo " ${NNBD_PLUGINS_LIST[*]} " )
51
- export EXCLUDED_PLUGINS_FROM_MASTER =$( IFS=, ; echo " ${NON_NNBD_PLUGINS_LIST[*]} " )
51
+ export EXCLUDED_PLUGINS_FOR_NNBD =$( IFS=, ; echo " ${NON_NNBD_PLUGINS_LIST[*]} " )
You can’t perform that action at this time.
0 commit comments