diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-08-21 22:09:53 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-09-07 00:42:21 +0800 |
commit | 9927964d218ac234e50c1818be655d92b3b2887b (patch) | |
tree | a20c19fa0881cc9baee22cc1f5580e8d16c8019e /.circleci | |
parent | c57a60833d96f9f6a568c3b85b9b6edecee8fe4a (diff) | |
download | dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.tar dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.tar.gz dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.tar.bz2 dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.tar.lz dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.tar.xz dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.tar.zst dexon-solidity-9927964d218ac234e50c1818be655d92b3b2887b.zip |
Buglist check script supports json paths
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index aec8be18..3e3d8c0a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -189,15 +189,21 @@ jobs: command: ./scripts/detect_trailing_whitespace.sh test_buglist: - docker: - - image: circleci/node - environment: - TERM: xterm - steps: - - checkout - - run: - name: Test buglist - command: ./test/buglistTests.js + docker: + - image: circleci/node + environment: + TERM: xterm + steps: + - checkout + - run: + name: JS deps + command: | + npm install download + npm install JSONPath + npm install mktemp + - run: + name: Test buglist + command: ./test/buglistTests.js test_x86_linux: docker: |