remove downloadsolc + clean cache

pull/1/head
yann300 6 years ago
parent 7b9a2174c4
commit 203093436f
  1. 10
      .circleci/config.yml
  2. 2
      .travis.yml

@ -26,13 +26,13 @@ jobs:
- checkout
- restore_cache:
keys:
- dep-bundle-18-{{ checksum "package.json" }}
- dep-bundle-19-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: dep-bundle-18-{{ checksum "package.json" }}
key: dep-bundle-19-{{ checksum "package.json" }}
paths:
- ~/repo/node_modules
- run: npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run build
- run: npm run lint && npm run test && npm run make-mock-compiler && npm run build
- run: ./ci/browser_tests.sh
remix-debugger:
@ -46,10 +46,10 @@ jobs:
- checkout
- restore_cache:
keys:
- dep-bundle-13-{{ checksum "package.json" }}
- dep-bundle-14-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: dep-bundle-13-{{ checksum "package.json" }}
key: dep-bundle-14-{{ checksum "package.json" }}
paths:
- ~/repo/node_modules
- run: npm run build_debugger

@ -6,7 +6,7 @@ branches:
- master
- remix_live
script:
- npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run build
- npm run lint && npm run test && npm run make-mock-compiler && npm run build
- ./ci/browser_tests.sh
deploy:
- provider: script

Loading…
Cancel
Save