Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 433786c

Browse files
committed
Merge remote-tracking branch 'upstream/master' into webview/federated_architecture_part_2
2 parents c3e2fdd + ae92e62 commit 433786c

File tree

50 files changed

+302
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+302
-95
lines changed

.ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ targets:
3939
recipe: plugins/plugins
4040
timeout: 30
4141
properties:
42+
add_recipes_cq: "true"
43+
target_file: windows_build_and_platform_tests.yaml
4244
dependencies: >
4345
[
4446
{"dependency": "vs_build"}
@@ -49,6 +51,8 @@ targets:
4951
recipe: plugins/plugins
5052
timeout: 30
5153
properties:
54+
add_recipes_cq: "true"
55+
target_file: windows_build_and_platform_tests.yaml
5256
channel: stable
5357
dependencies: >
5458
[
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
# Copyright 2013 The Flutter Authors. All rights reserved.
3+
# Use of this source code is governed by a BSD-style license that can be
4+
# found in the LICENSE file.
5+
6+
dart ./script/tool/bin/flutter_plugin_tools.dart build-examples --windows \
7+
--packages-for-branch
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
# Copyright 2013 The Flutter Authors. All rights reserved.
3+
# Use of this source code is governed by a BSD-style license that can be
4+
# found in the LICENSE file.
5+
6+
dart ./script/tool/bin/flutter_plugin_tools.dart drive-examples --windows \
7+
--packages-for-branch

.ci/scripts/prepare_tool.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
# Copyright 2013 The Flutter Authors. All rights reserved.
3+
# Use of this source code is governed by a BSD-style license that can be
4+
# found in the LICENSE file.
5+
6+
# To set FETCH_HEAD for "git merge-base" to work
7+
git fetch origin master
8+
9+
cd script/tool
10+
dart pub get
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
tasks:
3+
- name: "prepare tool"
4+
script: .ci/scripts/prepare_tool.sh
5+
- name: "build examples"
6+
script: .ci/scripts/build_examples_win32.sh
7+
- name: "drive examples"
8+
script: .ci/scripts/drive_examples_win32.sh

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
running-workflow-name: 'release'
3737
repo-token: ${{ secrets.GITHUB_TOKEN }}
3838
wait-interval: 180 # seconds
39-
allowed-conclusions: success
39+
allowed-conclusions: success,neutral
4040
# verbose:true will produce too many logs that hang github actions web UI.
4141
verbose: false
4242

packages/android_alarm_manager/android/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/android_intent/android/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/battery/battery/android/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/camera/camera/android/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)