Unverified Commit 23bade03 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1180 from ethereum/testremixdebugger

Run test parallel
parents e6e4b10a 91fea063
......@@ -4,7 +4,7 @@
#
version: 2
jobs:
build:
remix-ide:
docker:
# specify the version you desire here
- image: circleci/node:7.10
......@@ -26,20 +26,37 @@ jobs:
- checkout
- restore_cache:
keys:
- dep-bundle-2-{{ checksum "package.json" }}
- dep-bundle-4-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: dep-bundle-2-{{ checksum "package.json" }}
key: dep-bundle-4-{{ checksum "package.json" }}
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: ./ci/browser_tests.sh
remix-debugger:
docker:
# specify the version you desire here
- image: circleci/node:7.10
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- dep-bundle-3-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: dep-bundle-3-{{ checksum "package.json" }}
paths:
- ~/repo/node_modules
- run: cd src/app/debugger/remix-debugger && ./ci/browser_tests.sh
# - run: if [ $CIRCLE_BRANCH = 'master' ]; then ./ci/deploy_from_travis_master.sh; fi
# - run: if [ $CIRCLE_BRANCH = 'remix_live' ]; then ./ci/deploy_from_travis_master.sh; fi
workflows:
version: 2
build_all:
jobs:
- build
- remix-ide
- remix-debugger
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment