Skip to content

Commit

Permalink
[WIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Oct 11, 2023
1 parent 5607e15 commit ddd7d75
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-android-newArch_false-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-turborepo-android-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-turborepo-android-newArch_false-
${{ runner.os }}-turborepo-android-
- name: Check turborepo cache for Android
run: |
Expand Down Expand Up @@ -86,9 +86,9 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-ios-newArch_0-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-turborepo-ios-newArch_0-
${{ runner.os }}-turborepo-ios-
- name: Check turborepo cache for iOS
run: |
Expand All @@ -105,9 +105,9 @@ jobs:
with:
path: |
**/ios/Pods
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
key: ${{ runner.os }}-cocoapods-0-${{ hashFiles('example/ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-
${{ runner.os }}-cocoapods-0-
- name: Install cocoapods
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-android-newArch_${{ matrix.newArch }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-turborepo-android-detox-${{ matrix.newArch }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-turborepo-android-newArch_${{ matrix.newArch }}-
${{ runner.os }}-turborepo-android-detox-${{ matrix.newArch }}-
- name: Check turborepo cache for Android
run: |
Expand Down Expand Up @@ -151,9 +151,9 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-ios-newArch_${{ matrix.newArch }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-turborepo-ios-detox-${{ matrix.newArch }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-turborepo-ios-newArch_${{ matrix.newArch }}-
${{ runner.os }}-turborepo-ios-detox-${{ matrix.newArch }}-
- name: Check turborepo cache for iOS
run: |
Expand All @@ -170,9 +170,9 @@ jobs:
with:
path: |
**/ios/Pods
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
key: ${{ runner.os }}-cocoapod-${{ matrix.newArch }}-${{ hashFiles('example/ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-
${{ runner.os }}-cocoapods-${{ matrix.newArch }}-
- name: Install cocoapods
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
Expand Down
3 changes: 1 addition & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@
"!example/ios/Pods"
],
"outputs": [
"example/ios/AgoraRtcNgExample.ipa",
"example/ios/AgoraRtcNgExample.app.dSYM"
"example/ios/build/Build/Products/Release-iphonesimulator/AgoraRtcNgExample.app"
]
}
}
Expand Down

0 comments on commit ddd7d75

Please sign in to comment.