This repository was archived by the owner on Nov 1, 2021. It is now read-only.
forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (57 loc) · 1.86 KB
/
app_check.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
name: app_check
on:
pull_request:
paths:
- 'FirebaseAppCheck**'
- '.github/workflows/app_check.yml'
schedule:
# Run every day at 11pm (PST) - cron uses UTC times
- cron: '0 7 * * *'
jobs:
pod_lib_lint:
runs-on: macOS-latest
strategy:
matrix:
target: [ios, tvos, macos]
steps:
- uses: actions/checkout@v2
- name: Setup Bundler
run: scripts/setup_bundler.sh
- name: FirebaseAppCheck
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAppCheck.podspec --platforms=${{ matrix.target }}
diagnostics:
# Don't run on private repo unless it is a PR.
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
runs-on: macOS-latest
strategy:
matrix:
diagnostic: [tsan, asan, ubsan]
steps:
- uses: actions/checkout@v2
- name: Initialize xcodebuild
run: xcodebuild -list
- name: iOS Unit Tests
run: scripts/third_party/travis/retry.sh ./scripts/build.sh AppCheckUnit iOS spm ${{ matrix.diagnostic }}
- name: Upload raw logs if failed
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: failure-xcodebuild-raw-logs
path: xcodebuild.log
app_check-cron-only:
runs-on: macos-latest
if: github.event_name == 'schedule'
strategy:
matrix:
flags: [
'--skip-tests --use-modular-headers',
'--skip-tests --use-libraries'
]
needs: pod_lib_lint
steps:
- uses: actions/checkout@v2
- name: Setup Bundler
run: scripts/setup_bundler.sh
- name: PodLibLint FirebaseAppCheck Cron
# TODO: Remove --allow-warnings when stabilized.
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAppCheck.podspec --platforms=ios ${{ matrix.flags }}