From a916d7070ac3c14fd07fc61595f4239e8a85effd Mon Sep 17 00:00:00 2001 From: TT Date: Sun, 11 Aug 2019 09:22:37 +0900 Subject: [PATCH] fix: fetch submodules on circleci --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 400abb3..602b723 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,12 @@ jobs: steps: - checkout - run: - name: Build Firmware + name: "Pull Submodules" + command: | + git submodule init + git submodule update --remote + - run: + name: "Build Firmware" command: make - store_artifacts: path: build/ch.elf