Skip to content

[Fix] - Store Kit 1 race condition #596

[Fix] - Store Kit 1 race condition

[Fix] - Store Kit 1 race condition #596

Workflow file for this run

name: CI / Example iOS
on:
push:
branches: [main, next]
paths:
- 'src/**'
- 'ios/**'
- 'IapExample/ios/**'
- .github/ci-example-ios.yml
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'src/**'
- 'ios/**'
- 'IapExample/ios/**'
- .github/ci-example-ios.yml
jobs:
build_ios_example:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'yarn'
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.2.0'
- name: Install dependencies
run: yarn install --immutable
- name: Install dependencies for `IapExample/`
run: yarn install --immutable
working-directory: IapExample
- name: Restore buildcache
uses: mikehardy/buildcache-action@v2
continue-on-error: true
with:
cache_key: ${{ runner.os }}-buildcache-${{ hashFiles('**/Podfile.lock') }}
- name: Setup Ruby (bundle)
uses: ruby/setup-ruby@v1
with:
working-directory: IapExample
bundler-cache: true
ruby-version: '2.6.10'
- name: SwiftLint
run: swiftlint lint --fix --format --path ios/*.swift --config .swiftlint.yml
- name: Verify no files have changed after auto-fix
run: git diff --exit-code HEAD '*.swift'
- name: Restore Pods cache
uses: actions/cache@v4
with:
path: |
IapExample/ios/Pods
~/Library/Caches/CocoaPods
~/.cocoapods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: ${{ runner.os }}-pods-
- name: Install Pods
run: bundle exec pod install
working-directory: IapExample/ios
- name: Install xcpretty
run: gem install xcpretty
working-directory: IapExample/ios
- name: Build App
run: "set -o pipefail && xcodebuild \
CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ \
-derivedDataPath build -UseModernBuildSystem=YES \
-workspace IapExample.xcworkspace \
-scheme IapExample \
-sdk iphonesimulator \
-configuration Debug \
-destination 'platform=iOS Simulator,name=iPhone 11 Pro' \
build \
CODE_SIGNING_ALLOWED=NO | xcpretty"
working-directory: IapExample/ios