aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-15 18:30:54 +0800
committerGitHub <noreply@github.com>2018-08-15 18:30:54 +0800
commitc7d2af2637e061de43cc6c53e12bf35d1ac66387 (patch)
treecd486c80ba40b74e8ea5a688101b879d15ddca69 /.circleci
parentb9752b236b474e384a297fe832cf0efb161e8deb (diff)
parent55e67e41f9356e4953a57d8a15808e1c7d391686 (diff)
downloaddexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar
dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.gz
dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.bz2
dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.lz
dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.xz
dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.zst
dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.zip
Merge pull request #4583 from ethereum/nested_array_library_changelog
Bugfix Changelog entry regarding nested arrays returned by library functions
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml12
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