diff options
-rw-r--r-- | .circleci/config.yml | 27 | ||||
-rw-r--r-- | circle.yml | 23 |
2 files changed, 27 insertions, 23 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..c44ddc143 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,27 @@ +version: 2 + +jobs: + build: + docker: + - image: circleci/node:6.12 + environment: + CONTRACTS_COMMIT_HASH: '78fe8dd' + steps: + - run: echo 'export PATH=$HOME/CIRCLE_PROJECT_REPONAME/node_modules/.bin:$PATH' >> $BASH_ENV + - run: + name: yarn + command: yarn + - save_cache: + key: dependency-cache-{{ checksum "package.json" }} + paths: + - ~/.cache/yarn + - run: wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT_HASH}.zip + - run: unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot + - run: + name: testrpc + command: npm run testrpc -- --db testrpc_snapshot + background: true + - run: ./node_modules/lerna/bin/lerna run test:coverage + - run: ./node_modules/lerna/bin/lerna run report_test_coverage + - run: if [ $CIRCLE_BRANCH = "master" ]; then ./node_modules/lerna/bin/lerna run test:umd; fi + - run: ./node_modules/lerna/bin/lerna run lint diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 134251a9d..000000000 --- a/circle.yml +++ /dev/null @@ -1,23 +0,0 @@ -machine: - node: - version: 6.5.0 - environment: - CONTRACTS_COMMIT_HASH: '78fe8dd' - PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" - -dependencies: - override: - - yarn - cache_directories: - - ~/.cache/yarn - -test: - override: - - wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT_HASH}.zip - - unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot - - npm run testrpc -- --db testrpc_snapshot: - background: true - - ./node_modules/lerna/bin/lerna run test:coverage - - ./node_modules/lerna/bin/lerna run report_test_coverage - - if [ $CIRCLE_BRANCH = "master" ]; then ./node_modules/lerna/bin/lerna run test:umd; fi - - ./node_modules/lerna/bin/lerna run lint |