diff options
author | chriseth <chris@ethereum.org> | 2018-11-28 21:24:02 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-11-29 00:25:43 +0800 |
commit | 8ec66bcab65bd764a3923f5866d0d5c930a99e74 (patch) | |
tree | 2bc3684afc2368bccf5e15b160cd14ceebc14aee /.circleci | |
parent | 7cbf04686442b44b41d7b24800edb8444db31092 (diff) | |
download | dexon-solidity-8ec66bcab65bd764a3923f5866d0d5c930a99e74.tar.gz dexon-solidity-8ec66bcab65bd764a3923f5866d0d5c930a99e74.tar.zst dexon-solidity-8ec66bcab65bd764a3923f5866d0d5c930a99e74.zip |
Disable coverage generation for release branch.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 975d1c7a..6c5f3e85 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,6 +14,7 @@ defaults: command: | mkdir -p build cd build + [ -n "$COVERAGE" -a "$CIRCLE_BRANCH" != release -a -z "$CIRCLE_TAG" ] && CMAKE_OPTIONS="$CMAKE_OPTIONS -DCOVERAGE=ON" cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo $CMAKE_OPTIONS make -j4 - run_tests: &run_tests @@ -122,7 +123,7 @@ jobs: - image: buildpack-deps:artful environment: TERM: xterm - CMAKE_OPTIONS: -DCOVERAGE=ON + COVERAGE: "ON" steps: - checkout - run: |