-
Notifications
You must be signed in to change notification settings - Fork 1.7k
65 lines (56 loc) · 1.8 KB
/
sdk.crashlytics.yml
File metadata and controls
65 lines (56 loc) · 1.8 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
name: sdk.crashlytics
permissions:
contents: read
on:
workflow_dispatch:
pull_request:
paths:
- 'Crashlytics**'
- 'FirebaseCrashlytics.podspec'
- '.github/workflows/sdk.crashlytics.yml'
- '.github/workflows/_spm.yml'
- '.github/workflows/_cocoapods.yml'
- '.github/workflows/_catalyst.yml'
- '.github/workflows/_quickstart.yml'
- '.github/workflows/_cocoapods.cron.yml'
- 'Interop/Analytics/Public/*.h'
- 'Gemfile*'
schedule:
# Run every day at 11pm (PDT) / 2am (EDT) - cron uses UTC times
- cron: '0 6 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
spm:
uses: ./.github/workflows/_spm.yml
with:
target: FirebaseCrashlyticsUnit
is_nightly: ${{ github.event_name == 'schedule' }}
catalyst:
uses: ./.github/workflows/_catalyst.yml
with:
product: FirebaseCrashlytics
target: FirebaseCrashlytics-Unit-unit
pod_lib_lint:
uses: ./.github/workflows/_cocoapods.yml
with:
product: FirebaseCrashlytics
buildonly_platforms: tvOS, macOS, watchOS
timeout_minutes: 20
quickstart:
uses: ./.github/workflows/_quickstart.yml
with:
product: Crashlytics
setup_command: scripts/setup_quickstart.sh crashlytics
plist_src_path: scripts/gha-encrypted/qs-crashlytics.plist.gpg
plist_dst_path: quickstart-ios/crashlytics/GoogleService-Info.plist
secrets:
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
crashlytics-cron-only:
needs: pod_lib_lint
uses: ./.github/workflows/_cocoapods.cron.yml
with:
product: FirebaseCrashlytics
platforms: '[ "ios", "tvos", "macos", "watchos --skip-tests" ]'
flags: '[ "--use-static-frameworks", "--use-modular-headers --skip-tests" ]'