Files
flipper/.github/workflows/iOS-dependent-pod-lint.yml
Pritesh Nandgaonkar 6ba5a410a0 Update glog and doubleconversion which uses xcframework (#2153)
Summary:
This PR updates the Glog and DoubleConversion deps. Now the deps are shipped with precompiled xcframework. It will speed up our build time a bit.
The definition can be found [here for glog](https://github.com/priteshrnandgaonkar/glog/tree/update-0.3.5) and [here for double-conversion](https://github.com/priteshrnandgaonkar/double-conversion/)

There has been improvements in time. I will try to precompile folly to improve the timings significantly.

## Changelog

- Updated the Glog and DoubleConversion deps to the precompiled xcframework one
- Updated the sample app's Podfile.lock

Pull Request resolved: https://github.com/facebook/flipper/pull/2153

Test Plan:
- CI should be green
- Verified that sample app builds.

Reviewed By: mweststrate

Differential Revision: D27560567

Pulled By: priteshrnandgaonkar

fbshipit-source-id: ba295cbe84bb9d5ed6bd6ab17bd1cf5ea22f3cee
2021-04-06 06:02:47 -07:00

46 lines
1.2 KiB
YAML

name: Validate Dependent Podspecs
on:
push:
paths:
- "iOS/Podspecs/**"
pull_request:
paths:
- "iOS/Podspecs/**"
jobs:
lint-flipper_folly_pod:
runs-on: macos-latest
defaults:
run:
working-directory: iOS/Podspecs
steps:
- uses: actions/checkout@v2
- name: Install Dependences
run: pod repo update
- name: Lint Folly
run: pod spec lint Flipper-Folly.podspec --use-libraries --allow-warnings --verbose --skip-import-validation
lint-flipper_peertalk_pod:
runs-on: macos-latest
defaults:
run:
working-directory: iOS/Podspecs
steps:
- uses: actions/checkout@v2
- name: Install Dependences
run: pod repo update
- name: Lint Peertalk
run: pod spec lint Flipper-PeerTalk.podspec --use-libraries --allow-warnings --verbose --skip-import-validation
lint-flipper_rsocket_pod:
runs-on: macos-latest
defaults:
run:
working-directory: iOS/Podspecs
steps:
- uses: actions/checkout@v2
- name: Install Dependences
run: pod repo update
- name: Lint RSocket
run: pod spec lint Flipper-RSocket.podspec --use-libraries --allow-warnings --verbose --skip-import-validation