diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-04 20:53:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 20:53:15 +0800 |
commit | 79f5e36edbd8a4483aac46032092dece95bb0b4c (patch) | |
tree | b9c86a0badb2f1e82efa6354eede587368449a87 /.circleci | |
parent | a1e985a1cac46ecbc54c7ef5b846fb5faf2bede2 (diff) | |
parent | a87276341356e31e0712f42ada00ed5d55707a6b (diff) | |
download | dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.tar dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.tar.gz dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.tar.bz2 dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.tar.lz dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.tar.xz dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.tar.zst dexon-sol-tools-79f5e36edbd8a4483aac46032092dece95bb0b4c.zip |
Merge pull request #1311 from 0xProject/feature/contracts-monorepo-2
Contracts monorepo II
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 0ab512f58..d3b396bc6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,7 +40,8 @@ jobs: - restore_cache: keys: - repo-{{ .Environment.CIRCLE_SHA1 }} - - run: yarn wsrun test:circleci contracts + - run: yarn wsrun test:circleci @0x/contracts-multisig + - run: yarn wsrun test:circleci @0x/contracts-core test-contracts-geth: docker: - image: circleci/node:9 @@ -52,7 +53,8 @@ jobs: - repo-{{ .Environment.CIRCLE_SHA1 }} # HACK(albrow): we need to sleep 10 seconds to ensure the devnet is # initialized - - run: sleep 10 && TEST_PROVIDER=geth yarn wsrun test contracts + - run: sleep 10 && TEST_PROVIDER=geth yarn wsrun test @0x/contracts-multisig + - run: TEST_PROVIDER=geth yarn wsrun test @0x/contracts-core test-publish: resource_class: medium+ docker: @@ -81,6 +83,7 @@ jobs: - restore_cache: keys: - repo-{{ .Environment.CIRCLE_SHA1 }} + - run: yarn wsrun test:circleci @0x/contracts-test-utils - run: yarn wsrun test:circleci @0x/abi-gen - run: yarn wsrun test:circleci @0x/assert - run: yarn wsrun test:circleci @0x/base-contract |