Skip to content

Commit 0747bc7

Browse files
authored
Fix submodule checkout in CI (#1327)
1 parent 3506286 commit 0747bc7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-android.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v3
2727
with:
28-
depth: 1
29-
submodules: 'false'
28+
submodules: false
3029
- name: Update submodules
3130
run: |
3231
git submodule sync

.github/workflows/test-android-mac.yml.off

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
- name: Checkout
2929
uses: actions/checkout@v2
3030
with:
31-
submodules: 'true'
31+
submodules: true
32+
depth: 1
3233
continue-on-error: true
3334

3435
- name: Build and Test

0 commit comments

Comments
 (0)