Skip to content

Commit

Permalink
chore: no persist workspace in CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
evereq committed Oct 27, 2024
1 parent b3c82ca commit f0c1279
Showing 1 changed file with 4 additions and 30 deletions.
34 changes: 4 additions & 30 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ jobs:
key: yarn-packages-sonarqube-root-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- persist_to_workspace:
root: /tmp/workspace/sonarqube-root
paths:
- '*'

build-monorepo-root:
<<: *defaults
machine:
Expand All @@ -131,10 +128,7 @@ jobs:
key: yarn-packages-monorepo-root-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- persist_to_workspace:
root: /tmp/workspace/monorepo-root
paths:
- '*'

build-desktop:
<<: *defaults
machine:
Expand Down Expand Up @@ -165,10 +159,7 @@ jobs:
key: yarn-packages-desktop-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- persist_to_workspace:
root: /tmp/workspace/desktop
paths:
- '*'

build-api:
<<: *defaults
machine:
Expand Down Expand Up @@ -203,10 +194,7 @@ jobs:
key: yarn-packages-api-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- persist_to_workspace:
root: /tmp/workspace/api
paths:
- '*'

build-web:
<<: *defaults
machine:
Expand Down Expand Up @@ -241,10 +229,6 @@ jobs:
key: yarn-packages-web-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- persist_to_workspace:
root: /tmp/workspace/web
paths:
- '*'

test-e2e:
<<: *defaults
Expand Down Expand Up @@ -289,11 +273,6 @@ jobs:
name: Kill API Background Process
command: pgrep node &> /dev/null && killall -w node || true

- persist_to_workspace:
root: /tmp/workspace/test-e2e
paths:
- '*'

pulumi_deploy:
<<: *defaults
machine:
Expand Down Expand Up @@ -333,11 +312,6 @@ jobs:
paths:
- ~/.cache/yarn

- persist_to_workspace:
root: /tmp/workspace/pulumi
paths:
- '*'

workflows:
version: 2
build:
Expand Down

0 comments on commit f0c1279

Please sign in to comment.