Skip to content

Commit

Permalink
Fix build release pulling the submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Nov 21, 2018
1 parent f8710ff commit b75a9c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }}
Expand Down Expand Up @@ -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" }}
Expand Down

0 comments on commit b75a9c3

Please sign in to comment.