Skip to content

Commit

Permalink
moved clear deps into build workflow and updated checkout acctions
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielides committed Oct 10, 2024
1 parent 0898056 commit ba7ea1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
brew install automake
- name: Checkout DashSync
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: dashsync
submodules: recursive
Expand Down Expand Up @@ -48,7 +48,10 @@ jobs:
xcode-version: '15.4'
- name: Rustup add targets
run: rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim
- name: Dependencies
- name: Clear dependencies
working-directory: ./dashsync/Example
run: rm -rf Podfile.lock Pods/ *.xcworkspace
- name: Build dependencies
working-directory: ./dashsync/Example
run: pod install --repo-update --verbose
- name: Build
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
brew install automake
- name: Checkout DashSync
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: dashsync
submodules: recursive
Expand All @@ -44,9 +44,6 @@ jobs:
run: cargo install cargo-lipo
- name: Rustup add targets
run: rustup target add x86_64-apple-darwin
- name: Clear dependencies
working-directory: ./dashsync/Example
run: rm -rf Podfile.lock Pods/ *.xcworkspace
- name: Build Dependencies
working-directory: ./dashsync/Example
run: pod install --repo-update
Expand Down

0 comments on commit ba7ea1f

Please sign in to comment.