Skip to content

Commit

Permalink
Fix submodule checkout in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomsonTan committed Feb 7, 2025
1 parent cf69613 commit 6937852
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
depth: 1
submodules: 'false'
submodules: false
- name: Update submodules
run: |
git submodule sync
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-ios-mac11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
submodules: true
depth: 1
continue-on-error: true
- name: build
run: export IOS_DEPLOYMENT_TARGET=11.0 && ./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }}
3 changes: 2 additions & 1 deletion .github/workflows/test-android-mac.yml.off
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'true'
submodules: true
depth: 1
continue-on-error: true

- name: Build and Test
Expand Down

0 comments on commit 6937852

Please sign in to comment.