-
Notifications
You must be signed in to change notification settings - Fork 182
206 lines (181 loc) · 6.33 KB
/
all_plugins.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
name: all_plugins
on:
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
- "website/**"
- "**.md"
push:
branches:
- master
paths-ignore:
- "docs/**"
- "website/**"
- "**.md"
jobs:
analyze:
name: "Flutter Analyze"
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: |
./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Run Flutter Analyze"
run: melos run analyze
pub_dev_publish_check:
name: "Check pub.dev requirements"
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: |
./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Pub Check"
run: |
melos exec -c 1 --no-private --ignore="*example*" -- \
flutter pub publish --dry-run
pub_get_check:
name: "Check pub dependencies"
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: |
./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Flutter Pub Get"
run: |
melos exec -c 1 --scope="*example*" -- \
"flutter pub get"
check_formatting:
name: "Check code formatting"
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: |
./.github/workflows/scripts/install-tools.sh
curl -sL https://github.com/google/google-java-format/releases/download/google-java-format-1.3/google-java-format-1.3-all-deps.jar -o $HOME/google-java-format.jar
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Validate Dart formatting"
run: |
melos exec -c 1 -- \
"dart format ."
./.github/workflows/scripts/validate-formatting.sh
- name: "Validate Objective-C formatting"
if: ${{ success() || failure() }}
run: |
melos exec -c 4 --ignore="*platform_interface*" --ignore="*web*" -- \
find . -maxdepth 3 -name "*.h" -o -name "*.m" -print0 \| xargs -0 clang-format -i --style=Google --verbose
./.github/workflows/scripts/validate-formatting.sh
- name: "Validate Java formatting"
if: ${{ success() || failure() }}
run: |
melos exec -c 4 --ignore="*platform_interface*" --ignore="*web*" -- \
find . -maxdepth 12 -name "*.java" -print0 \| xargs -0 java -jar $HOME/google-java-format.jar --replace
./.github/workflows/scripts/validate-formatting.sh
test_and_coverage:
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2.3.4
with:
fetch-depth: 0
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Flutter Test"
run: melos run test --no-select
- name: "Flutter Test - Web"
run: melos run test:web --no-select
- name: "Collect Coverage"
run: melos run coverage
- name: Upload Coverage
uses: codecov/codecov-action@v2
with:
files: packages/*/coverage/lcov.info
integration_tests:
if: false # currently broken, see issue https://github.com/fluttercommunity/plus_plugins/issues/220
runs-on: macos-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2.3.4
with:
fetch-depth: 0
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- uses: nanasess/setup-chromedriver@master
with:
chromedriver-version: "94.0.4606.61"
- name: "Setup Linux"
run: |
sudo apt update
sudo apt install -y cmake dbus libblkid-dev libgtk-3-dev liblzma-dev ninja-build pkg-config xvfb clang-format
sudo apt install -y network-manager upower
if: matrix.os == 'ubuntu-latest'
- name: "Flutter Linux Integration Test"
run: |
flutter config --enable-linux-desktop
./.github/workflows/scripts/drive-example.sh linux
if: matrix.os == 'ubuntu-latest'
- name: "Drive Android Integration Test"
if: matrix.os == 'macos-latest'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 30
arch: x86_64
target: google_apis
profile: Nexus 5X
script: ./.github/workflows/scripts/drive-example.sh android
# - name: "Flutter Windows Integration Test"
# run: |
# flutter config --enable-windows-desktop
# ./.github/workflows/scripts/drive-example.sh windows
# if: matrix.os == 'windows-latest'
- name: "Drive iOS Integration Test"
run: |
./.github/workflows/scripts/drive-example.sh ios
if: matrix.os == 'macos-latest'
- name: "Drive MacOS Integration Test"
run: |
flutter config --enable-macos-desktop
./.github/workflows/scripts/drive-example.sh macos
if: matrix.os == 'macos-latest'
- name: "Drive Web Integration Test"
run: |
./.github/workflows/scripts/drive-example.sh web
if: matrix.os == 'linux-latest'