aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-04-11 16:45:54 +0800
committerGitHub <noreply@github.com>2019-04-11 16:45:54 +0800
commit464e79e66f18679b8afb821f622ed1358100832d (patch)
tree4ae9c67625369c238e751186629b391cfdf8b4cc /.circleci/config.yml
parent5b0aad05d7ccc1dabedfd1f3bfc0d584db849e63 (diff)
downloaddexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar
dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.gz
dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.bz2
dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.lz
dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.xz
dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.zst
dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.zip
core: fix false alarm (#564)
* ignore test simple * core: update voteFilter to filter old er round * circleci: save logs * core: move check notarySet to agrmgr * fixup
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 08ff726..c8d1c53 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -20,7 +20,7 @@ commands:
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
make test
- elif [ "${CIRCLE_BRANCH}" == "single-chain" ]; then
+ elif [ "${CIRCLE_BRANCH}" == "dexon-classic" ]; then
make test
else
make test-short
@@ -98,6 +98,14 @@ jobs:
steps:
- init_workspace
- run_test
+ - run:
+ name: Saving Logs
+ when: on_fail
+ command: |
+ mkdir -p /tmp/logs
+ cd integration_test && tar -czf /tmp/logs/integration_test.tar.gz log.*
+ - store_artifacts:
+ path: /tmp/logs
build:
executor: go1_11
@@ -130,7 +138,7 @@ workflows:
branches:
only:
- master
- - single-chain
+ - dexon-classic
test_and_build:
jobs: