diff options
author | Fabio Berger <me@fabioberger.com> | 2018-05-15 17:41:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 17:41:51 +0800 |
commit | 406e91d387f67b0eda48e9ab682814c8feffb5e1 (patch) | |
tree | 90e047171c2326d5a8c39164945c768858ca3302 /.circleci/config.yml | |
parent | ca08dd9705c2aefb092b10926af359ed8fabac79 (diff) | |
parent | 473acafd1457a381405335dae80a3a8e810af17b (diff) | |
download | dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.tar dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.tar.gz dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.tar.bz2 dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.tar.lz dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.tar.xz dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.tar.zst dexon-sol-tools-406e91d387f67b0eda48e9ab682814c8feffb5e1.zip |
Merge pull request #588 from 0xProject/improvement/use-wsrun
Individual package building & watching!!! 💪 🌹
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index dbd8b2926..58740062a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ jobs: - run: wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT_HASH}.zip - run: unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot - run: node ./node_modules/lerna/bin/lerna.js bootstrap - - run: yarn lerna:run build + - run: yarn build - save_cache: key: repo-{{ .Environment.CIRCLE_SHA1 }} paths: @@ -48,7 +48,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope 0x.js test:circleci + - run: yarn wsrun test:circleci 0x.js - save_cache: key: coverage-0xjs-{{ .Environment.CIRCLE_SHA1 }} paths: @@ -65,7 +65,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope contracts test:circleci + - run: yarn wsrun test:circleci contracts - save_cache: key: coverage-contracts-{{ .Environment.CIRCLE_SHA1 }} paths: @@ -82,7 +82,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope @0xproject/sol-compiler test:circleci + - run: yarn wsrun test:circleci @0xproject/sol-compiler - save_cache: key: coverage-sol-compiler-{{ .Environment.CIRCLE_SHA1 }} paths: @@ -99,7 +99,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --ignore contracts --ignore 0x.js --ignore @0xproject/sol-compiler test:circleci + - run: yarn wsrun test:circleci --exclude contracts --exclude 0x.js --exclude @0xproject/sol-compiler --stages --exclude-missing - save_cache: key: coverage-assert-{{ .Environment.CIRCLE_SHA1 }} paths: |