SUP-40249 Repricing and Repackaging feature - concurrency investigati… #14
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: CI | |
on: | |
push: | |
branches: [ "develop" ] | |
paths-ignore: | |
- 'docs/**' | |
- 'iOSTestApp/**' | |
- 'tvOSTestApp/**' | |
- 'Example/**' | |
- 'TestApp/**' | |
- 'LICENSE' | |
- '*.md' | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: "CocoaPods linting" | |
runs-on: macOS-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Updating CocoaPods repo | |
run: pod repo update | |
- name: Pod linting | |
run: pod lib lint --fail-fast --verbose --allow-warnings | |
SPM: | |
name: "Build SPM" | |
runs-on: macOS-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- destination: "OS=16.2,name=iPhone 14 Pro" | |
name: "iOS" | |
scheme: "PlayKitProviders" | |
- destination: "OS=16.0,name=Apple TV" | |
name: "tvOS" | |
scheme: "PlayKitProviders" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: ${{ matrix.name }} | |
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean build | xcpretty | |