From cd469f4c980ad4b83008e1af309b068c081b00b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Tue, 28 May 2019 08:55:30 -0400 Subject: [PATCH 1/2] dash-main --- .circleci/config.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 914b509e2..2f4c1e2de 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,13 +26,12 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git + git clone git@github.com:plotly/dash.git dash-main git clone git@github.com:plotly/dash-html-components.git - git clone git@github.com:plotly/dash-renderer.git . venv/bin/activate - pip install -e ./dash --quiet + pip install -e ./dash-main --quiet cd dash-html-components && npm install --ignore-scripts && npm run build && pip install -e . && cd .. - cd dash-renderer && npm install --ignore-scripts && npm run build && pip install -e . && cd .. + cd dash-main/dash-renderer && npm install --ignore-scripts && npm run build && pip install -e . && cd ../.. - run: name: Build command: | From 2c616c7a9c81a50b9d36065dfa618b06bda47a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Tue, 28 May 2019 11:06:30 -0400 Subject: [PATCH 2/2] shallow clone --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f4c1e2de..3387d6ddd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,8 +26,8 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git dash-main - git clone git@github.com:plotly/dash-html-components.git + git clone --depth 1 git@github.com:plotly/dash.git dash-main + git clone --depth 1 git@github.com:plotly/dash-html-components.git . venv/bin/activate pip install -e ./dash-main --quiet cd dash-html-components && npm install --ignore-scripts && npm run build && pip install -e . && cd ..