ci: SQDSDKS-7487 - Add GitHub Actions to Apple Media SDK #6
Workflow file for this run
This file contains hidden or 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: iOS SDK Build and Lint | |
| on: [pull_request] | |
| jobs: | |
| pod-lint: | |
| runs-on: macOS-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.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-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.app | |
| - name: Build with Carthage | |
| run: ./Scripts/carthage.sh build --no-skip-current || true | |
| - name: Carthage archive | |
| run: carthage archive mParticle_Apple_Media_SDK | |
| - name: Verify carthage products | |
| run: ls 2>&1 | grep .framework.zip | |
| run-analyzer: | |
| runs-on: macOS-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.app | |
| - name: Run static analyzer | |
| run: | | |
| bash -c '! (set -o pipefail && xcodebuild -project "mParticle-Apple-Media-SDK.xcodeproj" -scheme "mParticle-Apple-Media-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")' |