Skip to content

Commit

Permalink
fixing working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
aronchick committed Jan 29, 2024
1 parent 49a59ce commit e8f27f1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ jobs:
path: dist/

build_webui:
parallelism: 4
parallelism: 1
executor: node/default
working_directory: ~/repo/bacalhau
steps:
Expand All @@ -259,8 +259,9 @@ jobs:
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
working_directory: webui
name: Install Dependencies
command: yarn install
command: yarn install --immutable
- run:
working_directory: webui
environment:
Expand All @@ -270,13 +271,13 @@ jobs:
root: .
paths:
- "webui/build/*"
- ".yarn/cache"
- "webui/.yarn/cache"
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- .yarn/cache
- .yarn/unplugged
- webui/.yarn/cache
- webui/.yarn/unplugged

build_canary:
parallelism: 4
Expand Down

0 comments on commit e8f27f1

Please sign in to comment.