Skip to content

Commit d7c3ea5

Browse files
committed
add ios build
1 parent bd1f5cc commit d7c3ea5

File tree

1 file changed

+18
-26
lines changed

1 file changed

+18
-26
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -81,29 +81,21 @@ jobs:
8181
run: |
8282
yarn build:android
8383
84-
# !! Currently build iOS is not working due to issues with XCode version
85-
# build-ios:
86-
# runs-on: macos-14
87-
# needs: build-library
88-
89-
# steps:
90-
# - name: Checkout
91-
# uses: actions/checkout@v4
92-
93-
# - name: Setup Xcode version
94-
# uses: maxim-lobanov/setup-xcode@v1.6.0
95-
# with:
96-
# xcode-version: '15.4.0'
97-
98-
# - name: Setup
99-
# uses: ./.github/actions/setup
100-
101-
# - name: Install cocoapods
102-
# run: |
103-
# cd example/ios
104-
# pod install
105-
106-
# - name: Build example for iOS
107-
# working-directory: ./example
108-
# run: |
109-
# yarn build:ios
84+
build-ios:
85+
runs-on: macos-latest
86+
needs: build-library
87+
steps:
88+
- name: Checkout
89+
uses: actions/checkout@v6
90+
91+
- name: Setup
92+
uses: ./.github/actions/setup
93+
94+
- name: Install pods
95+
working-directory: ./example
96+
run: yarn pods
97+
98+
- name: Build example for iOS
99+
working-directory: ./example
100+
run: |
101+
yarn build:ios

0 commit comments

Comments
 (0)