Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/2245 This diff does the following: - Updates Folly to the latest version. - Updates boost to latest version and the boost is added as pre built artefact - Updates RSocket to the latest version - Updates ComponentKit to the latest version which has a fix for XCode 12.5 - Adds Flipper-Glog dependency updated with a fix for the issue mentioned [here](https://github.com/facebook/flipper/issues/2174) - This diff also ensures that Flipper, FlipperKit builds with Sample and SampleSwift app. - This diff also ensures that the bug mentioned [here](https://github.com/facebook/flipper/issues/2248) is addressed. Note: For Tutorial App to work we will have to make a release of Flipper and FlipperKit to CococaPods. Because the tutorial app refers the released version of Flipper and FlipperKit. It doesn't refer it locally. Reviewed By: passy Differential Revision: D28058972 fbshipit-source-id: d45dfc7315ace5d5c7d3a4ba94911fd4b58bdc31
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
name: Build iOS apps
|
|
on:
|
|
push:
|
|
paths:
|
|
- "iOS/**"
|
|
- "xplat/**"
|
|
- "Flipper.podspec"
|
|
- "FlipperKit.podspec"
|
|
pull_request:
|
|
paths:
|
|
- "iOS/**"
|
|
- "xplat/**"
|
|
- "Flipper.podspec"
|
|
- "FlipperKit.podspec"
|
|
|
|
jobs:
|
|
build-sample-objc:
|
|
runs-on: macos-latest
|
|
defaults:
|
|
run:
|
|
working-directory: iOS/Sample
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: pod install --repo-update
|
|
- name: Build Sample app
|
|
run: |
|
|
IPHONESIMULATOR=$(xcodebuild -showsdks | grep -o "iphonesimulator[0-9]\\+\\.[0-9]\\+$") && echo $IPHONESIMULATOR
|
|
xcodebuild build -workspace Sample.xcworkspace -scheme Sample -sdk $IPHONESIMULATOR EXCLUDED_ARCHS="arm64 i386"
|
|
|
|
build-sample-swift:
|
|
runs-on: macos-latest
|
|
defaults:
|
|
run:
|
|
working-directory: iOS/SampleSwift
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: pod install --repo-update
|
|
- name: Build SampleSwift app
|
|
run: |
|
|
IPHONESIMULATOR=$(xcodebuild -showsdks | grep -o "iphonesimulator[0-9]\\+\\.[0-9]\\+$") && echo $IPHONESIMULATOR
|
|
xcodebuild build -workspace SampleSwift.xcworkspace -scheme SampleSwift -sdk $IPHONESIMULATOR EXCLUDED_ARCHS="arm64 i386"
|
|
|
|
build-tutorial:
|
|
runs-on: macos-latest
|
|
defaults:
|
|
run:
|
|
working-directory: iOS/Tutorial
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: pod install --repo-update
|
|
- name: Build Tutorial app
|
|
run: |
|
|
IPHONESIMULATOR=$(xcodebuild -showsdks | grep -o "iphonesimulator[0-9]\\+\\.[0-9]\\+$") && echo $IPHONESIMULATOR
|
|
xcodebuild build -workspace Tutorial.xcworkspace -scheme Tutorial -sdk $IPHONESIMULATOR EXCLUDED_ARCHS="arm64 i386"
|