From b75a9c3acd56d418c1f0dbfcd59c5a9c528d2965 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Tue, 20 Nov 2018 16:33:47 -0800 Subject: [PATCH] Fix build release pulling the submodules --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d617670be57..f6b1af785e9 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" }}