|
@@ -35,6 +35,12 @@ jobs:
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
|
+ # In the checkout@v2, it doesn't support git submodule. Execute the commands manually.
|
|
|
+ - name: checkout submodules
|
|
|
+ shell: bash
|
|
|
+ run: |
|
|
|
+ git submodule sync --recursive
|
|
|
+ git -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
|
|
- name: Set up Node.js
|
|
|
uses: actions/setup-node@v1
|
|
|
with:
|
|
@@ -50,6 +56,12 @@ jobs:
|
|
|
runs-on: ubuntu-latest
|
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
|
+ # In the checkout@v2, it doesn't support git submodule. Execute the commands manually.
|
|
|
+ - name: checkout submodules
|
|
|
+ shell: bash
|
|
|
+ run: |
|
|
|
+ git submodule sync --recursive
|
|
|
+ git -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
|
|
- name: Set up JDK 1.8
|
|
|
uses: actions/setup-java@v1
|
|
|
with:
|