diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-08-03 19:55:44 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-14 21:57:38 +0800 |
commit | 55e67e41f9356e4953a57d8a15808e1c7d391686 (patch) | |
tree | 368286d5f45ab87bf91a054a5ce20ea7dd918662 /.circleci | |
parent | e1bb6848976c7a54baa19e3e61f9aeeb58f55f5a (diff) | |
download | dexon-solidity-55e67e41f9356e4953a57d8a15808e1c7d391686.tar.gz dexon-solidity-55e67e41f9356e4953a57d8a15808e1c7d391686.tar.zst dexon-solidity-55e67e41f9356e4953a57d8a15808e1c7d391686.zip |
Update bug list and add regular expression to bug list and add test.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index e3596d2b..4514626b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -179,6 +179,17 @@ jobs: name: Check spelling command: ~/.local/bin/codespell -S "*.enc,.git" -I ./scripts/codespell_whitelist.txt + test_buglist: + docker: + - image: circleci/node + environment: + TERM: xterm + steps: + - checkout + - run: + name: Test buglist + command: ./test/buglistTests.js + test_x86_linux: docker: - image: buildpack-deps:artful @@ -252,6 +263,7 @@ workflows: build_all: jobs: - test_check_spelling: *build_on_tags + - test_buglist: *build_on_tags - build_emscripten: *build_on_tags - test_emscripten_solcjs: <<: *build_on_tags |