Summary: This PR updates the flipperkit version of the Tutorial and updates the GH action to test it without the arch flag. This PR also fixes the script which updates the `flipperkit_version` tag in all the files. It was broken for Tutorial, as it used to replace the last released version of the pod with the current one in each file, but for some reason the flipper version in the Tutorial/Podfile was way older and it never got updated. I have fixed the logic now to replace the current version in the file with the new one, rather than relying on only last version to be replaced. ## Changelog - Updated the GH action of tutorial to remove the -arch flag - Updated Tutorial/Podfile and Podfile.lock - Updated scripts/update-pod-versions.sh Pull Request resolved: https://github.com/facebook/flipper/pull/1896 Test Plan: CI should be green Tested that the version gets updated for each and every file, file tested were Flipper.podspec, FlipperKit.podspec, Sample/Podfile SampleSwift/Podfile Tutorial/Podfile {F369967362} {F369967395} Reviewed By: nikoant Differential Revision: D26275657 Pulled By: priteshrnandgaonkar fbshipit-source-id: 0f21a2a33c740938d2b29624e95974e80a2e38ba
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
name: Build iOS apps
|
|
on: [push, pull_request]
|
|
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
|
|
|
|
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
|
|
|
|
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
|