-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcodemagic.yaml
484 lines (421 loc) · 16.6 KB
/
codemagic.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
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
definitions:
instance_mac_mini_m2: &instance_mac_mini_m2
instance_type: mac_mini_m2
max_build_duration: 30
env_versions: &env_versions
flutter: 3.22.3
xcode: 15.4
cocoapods: 1.16.2
java: 17
scripts:
- &verify_flutter_version
name: Verify Flutter version
script: |
# Verify Flutter version
echo "Verify Flutter version..."
REQUIRED_VERSION=$(grep flutter .tool-versions | awk '{print $2}')
echo "REQUIRED_VERSION: $REQUIRED_VERSION"
CURRENT_VERSION=$(flutter --version | grep -m 1 "^Flutter" | awk '{print $2}')
echo "CURRENT_VERSION: $CURRENT_VERSION"
if [ "$CURRENT_VERSION" != "$REQUIRED_VERSION" ]; then
echo "Error: Flutter version $REQUIRED_VERSION is required (current: $CURRENT_VERSION)"
exit 1
else
echo "Required version: $REQUIRED_VERSION == Current version: $CURRENT_VERSION"
echo "Flutter version is correct"
fi
working_directory: recipients_app
workflows:
android-staging-firebase-app-distribution-workflow:
name: Android Staging (Firebase App Distribution)
<<: *instance_mac_mini_m2
environment:
android_signing:
- social_income_upload_keystore.jks
groups:
- slack
- app-config-stage
- firebase
#- google_play # <-- (Includes GCLOUD_SERVICE_ACCOUNT_CREDENTIALS)
<<: *env_versions
cache:
cache_paths:
- $HOME/.gradle/caches
- $FLUTTER_ROOT/.pub-cache
scripts:
- name: Set up key.properties
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
cat >> "$CM_BUILD_DIR/recipients_app/android/key.properties" <<EOF
storePassword=$CM_KEYSTORE_PASSWORD
keyPassword=$CM_KEY_PASSWORD
keyAlias=$CM_KEY_ALIAS
storeFile=$CM_KEYSTORE_PATH
EOF
# - name: Decode Google credentials
# script: |
# echo $FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT > $GOOGLE_APPLICATION_CREDENTIALS
# Define reusable section 'verify_flutter_version'
- *verify_flutter_version
- name: Get Flutter packages
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
flutter pub get
working_directory: recipients_app
- name: Build AAB with Flutter
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
# Build the Flutter APK app
flutter build apk --release \
--flavor stage \
-t lib/main.dart \
--dart-define=SURVEY_BASE_URL=$SURVEY_BASE_URL \
--dart-define=SENTRY_URL=$SENTRY_URL
working_directory: recipients_app
artifacts:
- recipients_app/build/**/outputs/**/*.apk
- recipients_app/build/**/outputs/**/*.aab
- recipients_app/build/**/outputs/**/mapping.txt
- flutter_drive.log
publishing:
#google_play:
# credentials: $GCLOUD_SERVICE_ACCOUNT_CREDENTIALS
# track: internal
# submit_as_draft: true
firebase:
firebase_service_account: $FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT
android:
app_id: 1:51495651779:android:08ef862a962bc041185576
groups:
- internal-testers
artifact_type: "apk"
# Notifications
email: # See the following link for details about email publishing - https://docs.codemagic.io/publishing-yaml/distribution/#email
recipients:
notify:
success: true # To receive a notification when a build succeeds
failure: false # To not receive a notification when a build fails
slack: # See the following link about how to connect your Slack account - https://docs.codemagic.io/publishing-yaml/distribution/#slack
channel: $SLACK_CHANNEL_NAME
notify_on_build_start: false
notify:
success: true # To receive a notification when a build succeeds
failure: true # To not receive a notification when a build fails
android-production-workflow:
name: Android Production
<<: *instance_mac_mini_m2
environment:
android_signing:
- social_income_upload_keystore.jks
groups:
- slack
- app-config-prod
#- google_play # <-- (Includes GCLOUD_SERVICE_ACCOUNT_CREDENTIALS)
<<: *env_versions
cache:
cache_paths:
- $HOME/.gradle/caches
- $FLUTTER_ROOT/.pub-cache
scripts:
- name: Set up key.properties
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
cat >> "$CM_BUILD_DIR/recipients_app/android/key.properties" <<EOF
storePassword=$CM_KEYSTORE_PASSWORD
keyPassword=$CM_KEY_PASSWORD
keyAlias=$CM_KEY_ALIAS
storeFile=$CM_KEYSTORE_PATH
EOF
- name: Load Firebase configuration
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
cd $CM_BUILD_DIR/recipients_app/android/app/src
mkdir prod
cd prod
echo $ANDROID_FIREBASE_SECRET > google-services.json
- *verify_flutter_version
- name: Get Flutter packages
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
flutter pub get
working_directory: recipients_app
- name: Build AAB with Flutter
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
# Build the Flutter AAB app
flutter build appbundle --release \
--flavor prod \
-t lib/main.dart \
--dart-define=SURVEY_BASE_URL=$SURVEY_BASE_URL \
--dart-define=SENTRY_URL=$SENTRY_URL
working_directory: recipients_app
artifacts:
- recipients_app/build/**/outputs/**/*.apk
- recipients_app/build/**/outputs/**/*.aab
- recipients_app/build/**/outputs/**/mapping.txt
- flutter_drive.log
publishing:
#google_play:
# credentials: $GCLOUD_SERVICE_ACCOUNT_CREDENTIALS
# track: internal
# submit_as_draft: true
# Notifications
email: # See the following link for details about email publishing - https://docs.codemagic.io/publishing-yaml/distribution/#email
recipients:
notify:
success: true # To receive a notification when a build succeeds
failure: false # To not receive a notification when a build fails
slack: # See the following link about how to connect your Slack account - https://docs.codemagic.io/publishing-yaml/distribution/#slack
channel: $SLACK_CHANNEL_NAME
notify_on_build_start: false
notify:
success: true # To receive a notification when a build succeeds
failure: true # To not receive a notification when a build fails
ios-staging-testflight-workflow:
name: iOS Staging (Test Flight)
<<: *instance_mac_mini_m2
integrations:
app_store_connect: Social Income Recipient App
environment:
ios_signing:
distribution_type: app_store
bundle_identifier: org.socialincome.app.stage
groups:
- slack
- app-config-stage
vars:
APP_ID: 6464113329 # Apple ID of App "Stage Social Income"
<<: *env_versions
cache:
cache_paths:
- $FLUTTER_ROOT/.pub-cache
- $HOME/Library/Caches/CocoaPods
scripts:
- name: Set up code signing settings on Xcode project
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
xcode-project use-profiles \
--archive-method=app-store \
--export-options-plist=$CM_BUILD_DIR/recipients_app/ios/export_options.plist
# Print the export options plist
more $CM_BUILD_DIR/recipients_app/ios/export_options.plist
- *verify_flutter_version
- name: Get Flutter packages & Install pods
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
flutter pub get
find . -name "Podfile" -execdir pod install \;
working_directory: recipients_app
- name: Flutter build ipa
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
# Build the Flutter iOS app
flutter build ipa --release \
--flavor stage \
-t lib/main.dart \
--dart-define=SURVEY_BASE_URL=$SURVEY_BASE_URL \
--dart-define=SENTRY_URL=$SENTRY_URL \
--export-options-plist=$CM_BUILD_DIR/recipients_app/ios/export_options.plist
working_directory: recipients_app
artifacts:
- recipients_app/build/ios/ipa/*.ipa
- /tmp/xcodebuild_logs/*.log
- flutter_drive.log
publishing:
# Publish to Apple's Testflight via AppStore Connect
app_store_connect:
# Use referenced App Store Connect API key from above to authenticate binary upload
auth: integration
# Whether or not to submit the uploaded build to TestFlight beta review.
# Note: This action is performed during post-processing.
submit_to_testflight: true
# Notifications
email: # See the following link for details about email publishing - https://docs.codemagic.io/publishing-yaml/distribution/#email
recipients:
notify:
success: true # To receive a notification when a build succeeds
failure: false # To not receive a notification when a build fails
slack: # See the following link about how to connect your Slack account - https://docs.codemagic.io/publishing-yaml/distribution/#slack
channel: $SLACK_CHANNEL_NAME
notify_on_build_start: false
notify:
success: true # To receive a notification when a build succeeds
failure: true # To not receive a notification when a build fails
ios-staging-firebase-app-distribution-workflow:
name: iOS Staging (Firebase App Distribution)
<<: *instance_mac_mini_m2
integrations:
app_store_connect: Social Income Recipient App
environment:
ios_signing:
distribution_type: ad_hoc
bundle_identifier: org.socialincome.app.stage
groups:
- slack
- app-config-stage
- firebase
vars:
APP_ID: 6464113329 # Apple ID of App "Stage Social Income"
<<: *env_versions
cache:
cache_paths:
- $FLUTTER_ROOT/.pub-cache
- $HOME/Library/Caches/CocoaPods
scripts:
# - name: Set up keychain to be used for code signing using Codemagic CLI 'keychain' command
# script: keychain initialize
# - name: Fetch signing files
# script: |
# app-store-connect fetch-signing-files "org.socialincome.app.stage" \
# --type IOS_APP_ADHOC \
# --create
# - name: Set up signing certificate
# script: keychain add-certificates
- name: Set up code signing settings on Xcode project
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
xcode-project use-profiles \
--archive-method=ad-hoc \
--export-options-plist=$CM_BUILD_DIR/recipients_app/ios/export_options.plist
# Print the export options plist
more $CM_BUILD_DIR/recipients_app/ios/export_options.plist
- *verify_flutter_version
- name: Get Flutter packages & Install pods
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
flutter pub get
find . -name "Podfile" -execdir pod install \;
working_directory: recipients_app
- name: Flutter build ipa
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
# Build the Flutter iOS app
flutter build ipa --release \
--flavor stage \
-t lib/main.dart \
--dart-define=SURVEY_BASE_URL=$SURVEY_BASE_URL \
--dart-define=SENTRY_URL=$SENTRY_URL \
--export-options-plist=$CM_BUILD_DIR/recipients_app/ios/export_options.plist
working_directory: recipients_app
artifacts:
- recipients_app/build/ios/ipa/*.ipa
- /tmp/xcodebuild_logs/*.log
- flutter_drive.log
publishing:
# Publish to Firebase App Distribution
firebase:
firebase_service_account: $FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT
ios:
app_id: 1:51495651779:ios:d4d28e75065983fb185576
groups:
- internal-testers
# Notifications
email: # See the following link for details about email publishing - https://docs.codemagic.io/publishing-yaml/distribution/#email
recipients:
notify:
success: true # To receive a notification when a build succeeds
failure: false # To not receive a notification when a build fails
slack: # See the following link about how to connect your Slack account - https://docs.codemagic.io/publishing-yaml/distribution/#slack
channel: $SLACK_CHANNEL_NAME
notify_on_build_start: false
notify:
success: true # To receive a notification when a build succeeds
failure: true # To not receive a notification when a build fails
ios-production-workflow:
name: iOS Production
<<: *instance_mac_mini_m2
integrations:
app_store_connect: Social Income Recipient App
environment:
ios_signing:
distribution_type: app_store
bundle_identifier: org.socialincome.app
groups:
- slack
- app-config-prod
vars:
APP_ID: 6444860109 # Apple ID of Prod App "Social Income"
<<: *env_versions
cache:
cache_paths:
- $FLUTTER_ROOT/.pub-cache
- $HOME/Library/Caches/CocoaPods
scripts:
- name: Load Prod Firebase configuration
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
cd $CM_BUILD_DIR/recipients_app/ios/GoogleServicesConfig
echo $IOS_FIREBASE_SECRET > GoogleService-Info-Prod.plist
- name: Set up code signing settings on Xcode project
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
xcode-project use-profiles \
--archive-method=app-store \
--export-options-plist=$CM_BUILD_DIR/recipients_app/ios/export_options.plist
# Print the export options plist
more $CM_BUILD_DIR/recipients_app/ios/export_options.plist
- *verify_flutter_version
- name: Get Flutter packages & Install pods
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
flutter pub get
find . -name "Podfile" -execdir pod install \;
working_directory: recipients_app
- name: Flutter build ipa
script: |
#!/usr/bin/env sh
set -e # exit on first failed command
# Build the Flutter iOS app
flutter build ipa --release \
--flavor prod \
-t lib/main.dart \
--dart-define=SURVEY_BASE_URL=$SURVEY_BASE_URL \
--dart-define=SENTRY_URL=$SENTRY_URL \
--export-options-plist=$CM_BUILD_DIR/recipients_app/ios/export_options.plist
working_directory: recipients_app
artifacts:
- recipients_app/build/ios/ipa/*.ipa
- /tmp/xcodebuild_logs/*.log
- flutter_drive.log
publishing:
# Publish to Apple's Testflight via AppStore Connect
app_store_connect:
# Use referenced App Store Connect API key from above to authenticate binary upload
auth: integration
# Whether or not to submit the uploaded build to TestFlight beta review.
# Note: This action is performed during post-processing.
submit_to_testflight: true
# Notifications
email: # See the following link for details about email publishing - https://docs.codemagic.io/publishing-yaml/distribution/#email
recipients:
notify:
success: true # To receive a notification when a build succeeds
failure: false # To not receive a notification when a build fails
slack: # See the following link about how to connect your Slack account - https://docs.codemagic.io/publishing-yaml/distribution/#slack
channel: $SLACK_CHANNEL_NAME
notify_on_build_start: false
notify:
success: true # To receive a notification when a build succeeds
failure: true # To not receive a notification when a build fails