forked from khoren93/flutter_zxing
-
Notifications
You must be signed in to change notification settings - Fork 0
288 lines (256 loc) · 8.49 KB
/
Copy pathmain.yml
File metadata and controls
288 lines (256 loc) · 8.49 KB
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
name: Flutter CI
# Trigger CI on (1) pull requests and (2) pushes to main branch
on:
pull_request:
push:
branches:
- main
# Cancel previous workflows for the same pull request to save resources
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
# Grant read-all permissions to this workflow
permissions: read-all
jobs:
# Job for linting and formatting Dart code
lint:
name: "Lint and Format Dart Code"
runs-on: ubuntu-latest
steps:
# Checkout the repository
- uses: actions/checkout@v4
# Install Flutter SDK
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
# Setup Melos for workspace management
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
# Format code and check for issues
- name: Run Dart format
run: dart format --set-exit-if-changed .
- name: Analyze Dart code
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: 20
strategy:
fail-fast: false
matrix:
include:
- target: android
os: ubuntu
- target: ios
os: macos
- target: macos
os: macos
- target: linux
os: ubuntu
- target: windows
os: windows
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# iOS and macOS specific setup
- name: Copy ZXing source files for iOS/macOS
if: matrix.target == 'ios' || matrix.target == 'macos'
run: ./scripts/update_ios_macos_src.sh
# Android-specific setup
- name: Setup Java for Android (${{ matrix.target }}, ${{ matrix.os }})
if: matrix.target == 'android'
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
# Linux-specific setup
- name: Install dependencies for Flutter on Linux (${{ matrix.target }}, ${{ matrix.os }})
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
# Install Flutter SDK
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
# Setup Melos for workspace management
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
- name: Build example for ${{ matrix.target }} on ${{ matrix.os }}
shell: bash
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)
flutter build windows --debug
;;
*)
echo "Unknown target: $TARGET"
exit 1
;;
esac
# Integration tests for all platforms except Android (handled separately)
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
- target: windows
os: windows
device: windows
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# iOS/macOS specific setup
- name: Copy ZXing source files for iOS/macOS
if: matrix.target == 'ios' || matrix.target == 'macos'
run: ./scripts/update_ios_macos_src.sh
# Install Flutter SDK
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
# Setup Melos
- uses: bluefireteam/melos-action@v3
with:
run-bootstrap: true
enforce-lockfile: true
# Linux-specific dependencies
- name: Install dependencies for Flutter on Linux (${{ matrix.target }}, ${{ matrix.os }})'
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
# Launch iOS Simulator for iOS tests
- name: Launch iOS Simulator for ${{ matrix.target }}
if: matrix.target == 'ios'
run: |
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 tests
- name: Run tests for ${{ matrix.target }} on ${{ matrix.os }}
shell: bash
run: |
cd ./example
if [ "${{ matrix.target }}" == "linux" ]; then
xvfb-run flutter test integration_test -d "${{ matrix.device }}" --verbose
else
flutter test integration_test -d "${{ matrix.device }}" --verbose
fi
# Integration tests on Android emulator
test-example-android:
name: 'Test example on Android API level ${{ matrix.api-level }}'
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- api-level: 23
target: default
arch: x86
- api-level: 34
target: google_apis
arch: x86_64
- api-level: 36
target: google_apis
arch: x86_64
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Java for Android (${{ matrix.api-level }})'
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
# Install Flutter SDK
- 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 KVM for Android emulators
- name: Enable KVM for Android emulators (${{ matrix.api-level }})'
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@v4
- 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 }}
target: ${{ matrix.target }}
arch: ${{ matrix.arch }}
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."
# Create and run Android emulator
- name: Run tests on Android API level ${{ matrix.api-level }}
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: ${{ matrix.arch }}
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