diff options
| author | F. Eugene Aumson <gene@aumson.org> | 2018-07-02 05:54:48 +0800 | 
|---|---|---|
| committer | F. Eugene Aumson <gene@aumson.org> | 2018-07-09 22:56:18 +0800 | 
| commit | 9f08916cf18ad3e2686811933116122eea0890b9 (patch) | |
| tree | 2bf83026f22043ae059dd9c2fdbbb8eea73c7b60 /.circleci/config.yml | |
| parent | a0e3676e3aef4692732375c02c274223b3349f63 (diff) | |
| download | dexon-sol-tools-9f08916cf18ad3e2686811933116122eea0890b9.tar.gz dexon-sol-tools-9f08916cf18ad3e2686811933116122eea0890b9.tar.zst dexon-sol-tools-9f08916cf18ad3e2686811933116122eea0890b9.zip  | |
add tests of abi-gen
Diffstat (limited to '.circleci/config.yml')
| -rw-r--r-- | .circleci/config.yml | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 7027e3999..3393da379 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,6 +65,7 @@ jobs:            keys:              - repo-{{ .Environment.CIRCLE_SHA1 }}        - run: yarn wsrun test:circleci @0xproject/0x.js +      - run: yarn wsrun test:circleci @0xproject/abi-gen        - run: yarn wsrun test:circleci @0xproject/assert        - run: yarn wsrun test:circleci @0xproject/base-contract        - run: yarn wsrun test:circleci @0xproject/connect @@ -84,6 +85,10 @@ jobs:            paths:              - ~/repo/packages/0x.js/coverage/lcov.info        - save_cache: +          key: coverage-abi-gen-{{ .Environment.CIRCLE_SHA1 }} +          paths: +            - ~/repo/packages/abi-gen/coverage/lcov.info +      - save_cache:            key: coverage-assert-{{ .Environment.CIRCLE_SHA1 }}            paths:              - ~/repo/packages/assert/coverage/lcov.info @@ -162,6 +167,9 @@ jobs:              - coverage-0xjs-{{ .Environment.CIRCLE_SHA1 }}        - restore_cache:            keys: +            - coverage-abi-gen-{{ .Environment.CIRCLE_SHA1 }} +      - restore_cache: +          keys:              - coverage-assert-{{ .Environment.CIRCLE_SHA1 }}        - restore_cache:            keys:  | 
