Skip to content

Commit

Permalink
fixing makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
aronchick committed Jan 29, 2024
1 parent e8f27f1 commit 5013bd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,15 +249,14 @@ jobs:
path: dist/

build_webui:
parallelism: 1
executor: node/default
working_directory: ~/repo/bacalhau
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- yarn-packages-{{ checksum "webui/yarn.lock" }}
- run:
working_directory: webui
name: Install Dependencies
Expand All @@ -274,7 +273,7 @@ jobs:
- "webui/.yarn/cache"
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
key: yarn-packages-{{ checksum "webui/yarn.lock" }}
paths:
- webui/.yarn/cache
- webui/.yarn/unplugged
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ build-webui: ${WEB_BUILD_FILES}
webui/build:
mkdir -p $@

$(WEB_INSTALL_GUARD): webui/package.json webui/yarn-lock.json
$(WEB_INSTALL_GUARD): webui/package.json
cd webui && yarn install

export GENERATE_SOURCEMAP := false
Expand Down

0 comments on commit 5013bd3

Please sign in to comment.