diff options
author | chriseth <chris@ethereum.org> | 2018-12-18 23:19:50 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-18 23:20:02 +0800 |
commit | 506642475892bd5b598c1c9c6498ff3efa1fa6cc (patch) | |
tree | d5584362a04011e618e6470e7543b1fc14505570 /.circleci | |
parent | a51a8368aaa44bd1b26eb6869b107f6f3b3eec05 (diff) | |
download | dexon-solidity-506642475892bd5b598c1c9c6498ff3efa1fa6cc.tar.gz dexon-solidity-506642475892bd5b598c1c9c6498ff3efa1fa6cc.tar.zst dexon-solidity-506642475892bd5b598c1c9c6498ff3efa1fa6cc.zip |
Build in release mode.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index c13bef35..cec69e31 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,7 @@ defaults: 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 + cmake .. -DCMAKE_BUILD_TYPE=Release $CMAKE_OPTIONS make -j4 - run_tests: &run_tests name: Tests |