diff --git a/.circleci/config.yml b/.circleci/config.yml index d617670be..f6b1af785 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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" }}