ci: Add CI build of React Native #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Secondary Platforms iOS Build | |
on: [pull_request] | |
jobs: | |
# pod-lint: | |
# runs-on: macOS-13 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# | |
# - name: Select Xcode | |
# run: sudo xcode-select -s /Applications/Xcode_15.2.app | |
# | |
# - name: Update xcodeproj gem | |
# run: sudo gem install xcodeproj | |
# | |
# - name: Prevent social URL warnings if twitter is unreachable | |
# run: find . -path '*.podspec' -exec perl -pi -e 's/.+\.social_media_url.+//' {} \; | |
# | |
# - name: Lint with CocoaPods | |
# run: pod lib lint | |
# | |
# - name: Undo twitter change to podspec | |
# run: git checkout *.podspec | |
# carthage-build: | |
# runs-on: macOS-13 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# | |
# - name: Select Xcode | |
# run: sudo xcode-select -s /Applications/Xcode_15.2.app | |
# | |
# - name: Build with Carthage | |
# run: ./Scripts/carthage.sh build --no-skip-current || true | |
# | |
# - name: Carthage archive | |
# run: carthage archive mParticle_Apple_SDK && carthage archive mParticle_Apple_SDK_NoLocation | |
# | |
# - name: Verify carthage products | |
# run: ls 2>&1 | grep .framework.zip | |
build-react-native: | |
runs-on: macOS-13 | |
defaults: | |
run: | |
working-directory: ./RNExample/ios | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_15.2.app | |
- name: Add React Native cli | |
run: yarn add -D @react-native-community/cli | |
- name: Update CocoaPods repo | |
run: pod repo update | |
- name: Install CocoaPods dependencies | |
run: pod install | |
- name: Build iOS extension scheme | |
run: xcodebuild -allowProvisioningUpdates -workspace RNExample.xcworkspace -scheme RNExample -destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' | |
# run-analyzer: | |
# runs-on: macOS-13 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# | |
# - name: Select Xcode | |
# run: sudo xcode-select -s /Applications/Xcode_15.2.app | |
# | |
# - name: Run static analyzer | |
# run: | | |
# bash -c '! (set -o pipefail && xcodebuild -project "mParticle-Apple-SDK.xcodeproj" -scheme "mParticle-Apple-SDK" -sdk iphonesimulator -configuration Debug -destination "platform=iOS Simulator,name=iPhone 14,OS=latest" clean analyze | grep -v "warning: The iOS Simulator deployment target" | grep -B3 "warning")' |