Skip to content

Commit

Permalink
chore(ci): build dashboard
Browse files Browse the repository at this point in the history
Signed-off-by: Godefroy Ponsinet <godefroy.ponsinet@outlook.com>
  • Loading branch information
90dy committed Jun 13, 2019
1 parent c481aa6 commit 25304d4
Show file tree
Hide file tree
Showing 5 changed files with 403 additions and 25 deletions.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,12 @@ jobs:
- run:
name: build web app
working_directory: ~/go/src/berty.tech/client/react-native
command: /tmp/retry -m 3 ./node_modules/.bin/lerna run --stream build --scope=@berty/web
command: /tmp/retry -m 3 make build.web

- run:
name: build dashboard
working_directory: ~/go/src/berty.tech/client/react-native
command: /tmp/retry -m 3 make build.dashboard

- persist_to_workspace:
root: ~/go/src/berty.tech/
Expand Down
2 changes: 2 additions & 0 deletions client/react-native/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[*.js]
indent_size = none
4 changes: 4 additions & 0 deletions client/react-native/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@ debug.web.cleared: deps.web
$(LERNA_RUN) --scope=@berty/web clear-babel-cache
$(LERNA_RUN) --scope=@berty/web start

.PHONY: build.web
build.web: deps.web
$(LERNA_RUN) --scope=@berty/web build

.PHONY: debug.dashboard
debug.dashboard: deps.dashboard
$(LERNA_RUN) --scope=@berty/dashboard start
Expand Down

0 comments on commit 25304d4

Please sign in to comment.