diff --git a/Makefile b/Makefile index 2a013c1a..28dd84fb 100644 --- a/Makefile +++ b/Makefile @@ -36,14 +36,16 @@ install-frontend: ## Install buildbot frontend $(info --> Install buildbot frontend) if [[ ! -d $(VENDOR_DIR) ]]; then \ git clone --branch grid https://github.com/vladbogo/buildbot $(VENDOR_DIR); \ + cd $(VENDOR_DIR); \ + export NODE_OPTIONS=--openssl-legacy-provider && make frontend; \ fi # cd $(VENDOR_DIR)/master && python setup.py bdist_wheel # pip install ./dist/*.whl - cd $(VENDOR_DIR) - pip install mock - cd www/build_common; yarn install --pure-lockfile - for i in $(WWW_DEP_PKGS); \ - do (cd $$i; yarn install --pure-lockfile; yarn run build); done; \ + # cd $(VENDOR_DIR) + # pip install mock pkg + # cd www/build_common; yarn install --pure-lockfile + # for i in $(WWW_DEP_PKGS); \ + # do (cd $$i; yarn install --pure-lockfile; yarn run build); done; \ install-pre-commit: ## Install pre-commit tool $(info --> Install pre-commit tool via `pip`)