-
Notifications
You must be signed in to change notification settings - Fork 56
264 lines (230 loc) · 7.69 KB
/
main.yml
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
name: Flutter CI
# Trigger CI on (1) pull requests and (2) pushes to main.
on:
pull_request:
push:
branches:
- main
# Workflows run on a PR should cancel previous workflows run on the same PR, but
# NOT workflows running elsewhere (master).
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: read-all
jobs:
# Lint and format all the *.dart code.
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
- run: dart format --set-exit-if-changed .
- run: dart analyze
# Build the example application across all supported platforms.
build-example:
name: 'build-example (${{ matrix.target }}, ${{ matrix.os}})'
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 30
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
- target: android
os: ubuntu
- target: ios
os: macos
- target: macos
os: macos
- target: linux
os: ubuntu
# Windows build failing
# - target: windows
# os: windows
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: (iOS/macOS-only) Copy zxing src to ios/macos flutter build dir
if: matrix.target == 'ios' || matrix.target == 'macos'
run: ./scripts/update_ios_macos_src.sh
- name: (Android-only) Setup Java
uses: actions/setup-java@v4
if: matrix.target == 'android'
with:
java-version: 11
distribution: temurin
- name: (Linux-only) Install Flutter apt dependencies
if: matrix.target == 'linux' && matrix.os == 'ubuntu'
run: |
sudo apt update
sudo apt install -y \
cmake dbus libblkid-dev libgtk-3-dev liblzma-dev ninja-build \
pkg-config xvfb network-manager upower
# Setup flutter
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
# Setup melos
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
- name: 'Build example ${{ matrix.target }}'
run: |
cd example
TARGET=${{ matrix.target }}
case $TARGET in
ios)
flutter build ios --debug --no-codesign
;;
macos)
flutter build macos --debug
;;
android)
flutter build appbundle --debug
;;
linux)
flutter build linux --debug
;;
# Windows build failing
# windows)
# flutter build windows --debug
# ;;
esac
# Run `cd ./example && flutter test integration_test` across supported
# platforms, (except android, which has its own flow below).
test-example:
name: 'test-example (${{ matrix.target }}, ${{ matrix.os }})'
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- target: ios
os: macos
device: iphone
- target: macos
os: macos
device: macos
- target: linux
os: ubuntu
device: linux
# Windows build failing
# - target: windows
# os: windows
# device: windows
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: (iOS/macOS-only) Copy zxing src to ios/macos flutter build dir
if: matrix.target == 'ios' || matrix.target == 'macos'
run: ./scripts/update_ios_macos_src.sh
# Setup flutter
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
# Setup melos
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
- name: (Linux-only) Install Flutter apt dependencies
if: matrix.target == 'linux' && matrix.os == 'ubuntu'
run: |
sudo apt update
sudo apt install -y \
cmake dbus libblkid-dev libgtk-3-dev liblzma-dev ninja-build \
pkg-config xvfb network-manager upower
- name: (iOS-only) Launch iOS simulator
if: matrix.target == 'ios'
run: |
# # List available iOS simulator devices and runtimes
# xcrun simctl list devices available --json
simulator_id=$(xcrun simctl create iphone-zxing \
com.apple.CoreSimulator.SimDeviceType.iPhone-15 \
com.apple.CoreSimulator.SimRuntime.iOS-17-5)
xcrun simctl boot ${simulator_id}
- run: flutter devices
- if: matrix.target != 'linux'
run: cd ./example && flutter test integration_test -d "${{ matrix.device }}" --verbose
- if: matrix.target == 'linux'
run: cd ./example && xvfb-run flutter test integration_test -d "${{ matrix.device }}" --verbose
# Run `cd ./example && flutter test integration_test` on an Android emulator.
# Android has a lot of extra steps, so it has its own section.
test-example-android:
name: 'test-example (android v${{ matrix.api-level}}, ubuntu)'
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
api-level: [21]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin
# Setup flutter
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
# Setup melos
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
# Enable nested virtualization so we can run an Android emulator VM
- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
# Gradle cache
- uses: gradle/actions/setup-gradle@v3
- name: Setup AVD actions/cache
uses: actions/cache@v4
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-${{ matrix.api-level }}
- name: Create and cache AVD snapshot
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: false
script: echo "Generated AVD snapshot for caching."
# Run tests on the android emulator
- name: flutter test integration_test
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: |
flutter devices
cd ./example && flutter test integration_test --verbose