-
Notifications
You must be signed in to change notification settings - Fork 150
234 lines (185 loc) · 5.77 KB
/
prepare-e2e_app.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
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
name: prepare e2e_app
on:
workflow_dispatch:
pull_request:
paths:
- '**'
- '!**.md' # ignore readmes
- '!**.mdx' # ignore docs
jobs:
prepare-android-on-windows:
runs-on: ${{ matrix.os }}
name: Android on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
flutter-version: ['3.24.x']
flutter-channel: ['stable']
defaults:
run:
working-directory: dev/e2e_app/android
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
channel: ${{ matrix.flutter-channel }}
- name: Preload Flutter artifacts
run: flutter precache --android
- name: Generate Gradle wrapper
run: flutter build apk --config-only
- name: ktlint check
run: .\gradlew.bat :patrol:ktlintCheck
- name: ktlint format
run: .\gradlew.bat :patrol:ktlintFormat
- name: Build app with Gradle
run: .\gradlew.bat :app:assembleDebug
- name: Build app with Flutter tool
run: flutter build apk --debug
prepare-android-on-linux:
runs-on: ${{ matrix.os }}
name: Android on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
flutter-version: ['3.24.x']
flutter-channel: ['stable']
defaults:
run:
working-directory: dev/e2e_app/android
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
channel: ${{ matrix.flutter-channel }}
- name: Preload Flutter artifacts
run: flutter precache --android
- name: Generate Gradle wrapper
run: flutter build apk --config-only
- name: Run unit tests
if: success() || failure()
run: ./gradlew :patrol:testDebug
- name: ktlint check
if: success() || failure()
run: ./gradlew :patrol:ktlintCheck
- name: ktlint format
if: success() || failure()
run: ./gradlew :patrol:ktlintFormat
- name: Build app with Gradle
run: ./gradlew :app:assembleDebug
- name: Build app with Flutter tool
run: flutter build apk --debug
prepare-ios:
runs-on: ${{ matrix.os }}
name: iOS on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-13]
flutter-version: ['3.24.x']
flutter-channel: ['stable']
defaults:
run:
working-directory: dev/e2e_app/ios
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install tools
run: |
brew update
brew install swift-format
brew install clang-format
brew install xcbeautify
- name: swift-format lint
run: test -z $(swift-format lint --recursive --strict .)
- name: swift-format format
if: success() || failure()
run: |
swift-format format --recursive --in-place .
git update-index --refresh
git diff-index --quiet HEAD --
- name: clang-format
if: success() || failure()
run: |
find . -iname '*.h' -o -iname '*.m' | xargs -I {} clang-format --dry-run --Werror {}
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
channel: ${{ matrix.flutter-channel }}
- name: Preload Flutter artifacts
run: flutter precache --ios
- name: Generate iOS build files
run: flutter build ios --config-only --simulator
- name: Start iOS simulator
uses: futureware-tech/simulator-action@v2
with:
model: iPhone 15
os: iOS
os_version: 17.2
erase_before_boot: true
shutdown_after_job: true
- name: Run unit tests
run: |
set -o pipefail
xcodebuild test \
-workspace Runner.xcworkspace \
-scheme Runner \
-only-testing RunnerTests \
-configuration Debug \
-sdk iphoneos -destination 'platform=iOS Simulator,name=iPhone 15' \
-derivedDataPath ../build/ios_unit | xcbeautify --renderer github-actions
prepare-flutter:
name: Flutter ${{ matrix.flutter-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flutter-version: ['3.24.x']
flutter-channel: ['stable']
defaults:
run:
working-directory: dev/e2e_app
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
channel: ${{ matrix.flutter-channel }}
- name: Set up Melos and activate workspace
working-directory: .
run: |
dart pub global activate melos
melos bootstrap
- name: flutter pub get
run: flutter pub get
- name: flutter test
if: success() || failure()
run: flutter test
- name: Run analyzer
if: success() || failure()
run: |
flutter analyze
dart run custom_lint
- name: dart format
if: success() || failure()
run: dart format --set-exit-if-changed .