-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathinfra.samples.symbolcollision.yml
More file actions
36 lines (31 loc) · 1.13 KB
/
infra.samples.symbolcollision.yml
File metadata and controls
36 lines (31 loc) · 1.13 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
name: infra.samples.symbolcollision
# Tests the Pods listed in SymbolCollisionTest/Podfile for symbol collisions.
on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/infra.samples.symbolcollision.yml'
- 'SymbolCollisionTest/**'
- 'Gemfile*'
schedule:
# Run every day at 1am (PDT) / 4am (EDT) - cron uses UTC times
- cron: '0 8 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
installation-test:
# Don't run on private repo unless it is a PR.
if: github.repository == 'Firebase/firebase-ios-sdk' || github.event_name == 'pull_request'
runs-on: macos-15
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
- name: Setup Bundler
run: scripts/setup_bundler.sh
- name: Xcode
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
- name: Prereqs
run: scripts/install_prereqs.sh SymbolCollision iOS
- name: Build
run: scripts/build.sh SymbolCollision iOS