Skip to content

Commit

Permalink
test: tmp diable CI cache
Browse files Browse the repository at this point in the history
  • Loading branch information
boolafish committed Jun 26, 2020
1 parent ff71d4c commit 0e73e4c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ commands:
- run:
name: Set up environment
command: echo 'export PATH="$(npm bin):$PATH"' >> $BASH_ENV
- restore_cache:
keys:
- dependencies-v1-{{ checksum "~/repo/plasma_framework/package-lock.json" }}
# - restore_cache:
# keys:
# - dependencies-v1-{{ checksum "~/repo/plasma_framework/package-lock.json" }}
- run:
name: Install dependencies
working_directory: ~/repo/plasma_framework
command: |
npm install
find node_modules -name .git | xargs rm -fr # workaround for a problem with git dependencies
- save_cache:
key: dependencies-v1-{{ checksum "~/repo/plasma_framework/package-lock.json" }}
paths:
- ~/repo/plasma_framework/node_modules
# - save_cache:
# key: dependencies-v1-{{ checksum "~/repo/plasma_framework/package-lock.json" }}
# paths:
# - ~/repo/plasma_framework/node_modules

setup_python_env:
steps:
Expand Down Expand Up @@ -71,9 +71,9 @@ jobs:
steps:
- setup_truffle_env
- run:
name: truffle version
command: npx truffle -v
working_directory: ~/repo/plasma_framework
name: truffle version
command: npx truffle version
working_directory: ~/repo/plasma_framework
- run:
name: Run tests
command: npm run test
Expand Down

0 comments on commit 0e73e4c

Please sign in to comment.