fix(circleci): clone submodules

This commit is contained in:
Alessandro Pezzè 2020-07-10 15:06:13 +02:00
parent 14e9b191c3
commit 08083bb2a4

View file

@ -6,6 +6,11 @@ jobs:
- image: circleci/python:3.7
steps:
- checkout
- run:
name: Pull Submodules
command: |
git submodule init
git submodule update --remote
- run:
name: Install deps
command: sudo make dev-install
@ -21,6 +26,11 @@ jobs:
image: ubuntu-1604:201903-01 # https://circleci.com/docs/2.0/configuration-reference/#available-machine-images with Docker 18.09.3
steps:
- checkout
- run:
name: Pull Submodules
command: |
git submodule init
git submodule update --remote
- add_ssh_keys:
fingerprints:
- "d3:5f:9d:68:ea:12:9a:42:d3:d3:e1:db:b0:6a:fc:d2"