Skip to content

Commit

Permalink
Skip cache restore
Browse files Browse the repository at this point in the history
  • Loading branch information
comountainclimber committed Aug 15, 2022
1 parent 38f0ee0 commit 92652c7
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,34 +11,32 @@ jobs:
- node/install:
node-version: "16.14.2"
- checkout
- restore_cache:
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
- run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1
# - restore_cache:
# key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
- run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1 --cache-folder ~/.cache/yarn
- run: yarn lint
- run: yarn flow
- run: yarn assets
- run: yarn test-ci
- save_cache:
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- /usr/local/share/.cache/yarn/v2
- ~/.cache/yarn
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
build:
macos:
xcode: "14.0.0"
steps:
- node/install:
node-version: "16.14.2"
- checkout
- restore_cache:
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
- run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1
# - restore_cache:
# key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
- run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1 --cache-folder ~/.cache/yarn
- run: yarn release:all
- save_cache:
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- /usr/local/share/.cache/yarn/v2
- ~/.cache/yarn
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }}
- store_artifacts:
path: dist
destination: build
Expand Down

0 comments on commit 92652c7

Please sign in to comment.