Skip to content

Commit

Permalink
github action - update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchicn committed Oct 14, 2020
1 parent 9de3758 commit 2129a56
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
sudo pip install wheel
sudo pip install cpp-coveralls
- uses: actions/checkout@v2
- name: 'update submodules'
run: |
git submodule update --init external/rapidjson
- name: 'build and make'
run: |
mkdir build
Expand All @@ -35,6 +38,9 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: 'update submodules'
run: |
git submodule update --init external/rapidjson
- name: 'build and make'
run: |
mkdir build
Expand All @@ -54,7 +60,8 @@ jobs:
- uses: actions/checkout@v2
- name: 'update submodules'
run: |
git submodule update --init --recursive
git submodule update --init external/rapidjson
git submodule update --init external/ios-cmake
- name: 'build and make'
run: |
mkdir build && cd build
Expand All @@ -81,6 +88,9 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: 'update submodules'
run: |
git submodule update --init external/rapidjson
- name: 'add msbuild'
uses: microsoft/setup-msbuild@v1.0.2
- name: 'build and make'
Expand Down

0 comments on commit 2129a56

Please sign in to comment.