@@ -103,52 +103,52 @@ jobs:
103103 run : |
104104 yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
105105
106- build-ios :
107- runs-on : macos-14
108- env :
109- TURBO_CACHE_DIR : .turbo/ios
110- steps :
111- - name : Checkout
112- uses : actions/checkout@v3
113-
114- - name : Setup
115- uses : ./.github/actions/setup
116-
117- - name : Cache turborepo for iOS
118- uses : actions/cache@v3
119- with :
120- path : ${{ env.TURBO_CACHE_DIR }}
121- key : ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
122- restore-keys : |
123- ${{ runner.os }}-turborepo-ios-
124-
125- - name : Check turborepo cache for iOS
126- run : |
127- TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:ios').cache.status")
128-
129- if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
130- echo "turbo_cache_hit=1" >> $GITHUB_ENV
131- fi
132-
133- - name : Cache cocoapods
134- if : env.turbo_cache_hit != 1
135- id : cocoapods-cache
136- uses : actions/cache@v3
137- with :
138- path : |
139- **/ios/Pods
140- key : ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
141- restore-keys : |
142- ${{ runner.os }}-cocoapods-
143-
144- - name : Install cocoapods
145- if : env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
146- run : |
147- cd example/ios
148- pod install
149- env :
150- NO_FLIPPER : 1
151-
152- - name : Build example for iOS
153- run : |
154- yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
106+ # build-ios:
107+ # runs-on: macos-14
108+ # env:
109+ # TURBO_CACHE_DIR: .turbo/ios
110+ # steps:
111+ # - name: Checkout
112+ # uses: actions/checkout@v3
113+ #
114+ # - name: Setup
115+ # uses: ./.github/actions/setup
116+ #
117+ # - name: Cache turborepo for iOS
118+ # uses: actions/cache@v3
119+ # with:
120+ # path: ${{ env.TURBO_CACHE_DIR }}
121+ # key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
122+ # restore-keys: |
123+ # ${{ runner.os }}-turborepo-ios-
124+ #
125+ # - name: Check turborepo cache for iOS
126+ # run: |
127+ # TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:ios').cache.status")
128+ #
129+ # if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
130+ # echo "turbo_cache_hit=1" >> $GITHUB_ENV
131+ # fi
132+ #
133+ # - name: Cache cocoapods
134+ # if: env.turbo_cache_hit != 1
135+ # id: cocoapods-cache
136+ # uses: actions/cache@v3
137+ # with:
138+ # path: |
139+ # **/ios/Pods
140+ # key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
141+ # restore-keys: |
142+ # ${{ runner.os }}-cocoapods-
143+ #
144+ # - name: Install cocoapods
145+ # if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
146+ # run: |
147+ # cd example/ios
148+ # pod install
149+ # env:
150+ # NO_FLIPPER: 1
151+ #
152+ # - name: Build example for iOS
153+ # run: |
154+ # yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
0 commit comments