remove downloadsolc + clean cache

pull/3094/head
yann300 7 years ago
parent dcc9529b5a
commit 2f1ddd775d
  1. 10
      .circleci/config.yml
  2. 2
      .travis.yml

@ -26,13 +26,13 @@ jobs:
- checkout - checkout
- restore_cache: - restore_cache:
keys: keys:
- dep-bundle-18-{{ checksum "package.json" }} - dep-bundle-19-{{ checksum "package.json" }}
- run: npm install - run: npm install
- save_cache: - save_cache:
key: dep-bundle-18-{{ checksum "package.json" }} key: dep-bundle-19-{{ checksum "package.json" }}
paths: paths:
- ~/repo/node_modules - ~/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 - run: ./ci/browser_tests.sh
remix-debugger: remix-debugger:
@ -46,10 +46,10 @@ jobs:
- checkout - checkout
- restore_cache: - restore_cache:
keys: keys:
- dep-bundle-13-{{ checksum "package.json" }} - dep-bundle-14-{{ checksum "package.json" }}
- run: npm install - run: npm install
- save_cache: - save_cache:
key: dep-bundle-13-{{ checksum "package.json" }} key: dep-bundle-14-{{ checksum "package.json" }}
paths: paths:
- ~/repo/node_modules - ~/repo/node_modules
- run: npm run build_debugger - run: npm run build_debugger

@ -6,7 +6,7 @@ branches:
- master - master
- remix_live - remix_live
script: 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 - ./ci/browser_tests.sh
deploy: deploy:
- provider: script - provider: script

Loading…
Cancel
Save