Skip to content

Commit

Permalink
ci: mark build ios optional
Browse files Browse the repository at this point in the history
  • Loading branch information
tompsota committed Nov 15, 2024
1 parent 425ab2c commit bf2db21
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,29 +94,31 @@ jobs:
run: |
yarn build:android
build-ios:
runs-on: macos-14
needs: build-library
steps:
- name: Checkout
uses: actions/checkout@v4
# !! Currently build iOS is not working due to issues with XCode version
# build-ios:
# runs-on: macos-14
# needs: build-library

- name: Setup Xcode version
uses: maxim-lobanov/[email protected]
with:
xcode-version: '15.4.0'
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Setup Xcode version
# uses: maxim-lobanov/[email protected]
# with:
# xcode-version: '15.4.0'



- name: Setup
uses: ./.github/actions/setup
# - name: Setup
# uses: ./.github/actions/setup

- name: Install cocoapods
run: |
cd example/ios
pod install
# - name: Install cocoapods
# run: |
# cd example/ios
# pod install

- name: Build example for iOS
working-directory: ./example
run: |
yarn build:ios
# - name: Build example for iOS
# working-directory: ./example
# run: |
# yarn build:ios

0 comments on commit bf2db21

Please sign in to comment.