From 0225bd4946781dd3b30e0fca6b2566343b74557b Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Sun, 21 Oct 2018 17:49:43 +0300 Subject: [PATCH] CI: install git lfs --- .circleci/config.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7d2923e..7e52648 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,10 +91,15 @@ jobs: docker: - image: circleci/python:2.7 steps: + - run: + name: install git lfs + command: 'curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash' + - run: sudo apt-get install git-lfs + - run: git lfs install + - run: pip install --upgrade pip + - run: sudo pip install mkdocs - checkout - run: git lfs fetch --all - - run: pip install --upgrade pip - - run: pip install mkdocs - run: cd docs && mkdocs build --clean