Fix build release pulling the submodules

This commit is contained in:
Syrus Akbary 2018-11-20 16:33:47 -08:00
parent f8710ffafd
commit b75a9c3acd

View File

@ -32,6 +32,12 @@ jobs:
steps:
- checkout
- run:
name: Pull submodules
command: |
# git pull --recurse-submodules
git submodule sync --recursive
git submodule update --recursive --init
- restore_cache:
keys:
- v4-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
@ -65,6 +71,12 @@ jobs:
steps:
- checkout
- run:
name: Pull submodules
command: |
# git pull --recurse-submodules
git submodule sync --recursive
git submodule update --recursive --init
- restore_cache:
keys:
- v4-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}