From 6faad3db605fddba368eba734ee763d27848dfac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Tue, 28 May 2019 08:55:52 -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 900934bc..75d62315 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,14 +29,13 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git - git clone git@github.com:plotly/dash-renderer.git + git clone git@github.com:plotly/dash.git dash-main git clone git@github.com:plotly/dash-core-components.git git clone git@github.com:plotly/dash-table.git . venv/bin/activate - pip install -e ./dash --quiet + pip install -e ./dash-main --quiet cd dash-core-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 ../.. cd dash-table && npm install --ignore-scripts && npm run build && pip install -e . && cd .. - run: From a83a0866289f4d030428eed183ab5a48c08178e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Tue, 28 May 2019 11:06:51 -0400 Subject: [PATCH 2/2] shallow clone --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 75d62315..fa3d8a79 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,9 +29,9 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git dash-main - git clone git@github.com:plotly/dash-core-components.git - git clone git@github.com:plotly/dash-table.git + git clone --depth 1 git@github.com:plotly/dash.git dash-main + git clone --depth 1 git@github.com:plotly/dash-core-components.git + git clone --depth 1 git@github.com:plotly/dash-table.git . venv/bin/activate pip install -e ./dash-main --quiet cd dash-core-components && npm install --ignore-scripts && npm run build && pip install -e . && cd ..