diff options
author | chriseth <chris@ethereum.org> | 2018-03-06 05:56:35 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-03-06 06:22:59 +0800 |
commit | 556fe8a574d6494f68a28267e30808c0448ddcb1 (patch) | |
tree | 1863811492a60e4f683b64b6d987b8a4f3693688 | |
parent | 8259ce1e94ee6a4d33ca16f3f4d3616398e2de8c (diff) | |
download | dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.tar dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.tar.gz dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.tar.bz2 dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.tar.lz dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.tar.xz dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.tar.zst dexon-solidity-556fe8a574d6494f68a28267e30808c0448ddcb1.zip |
Build with four parallel jobs.
-rw-r--r-- | circle.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -105,7 +105,11 @@ jobs: command: ccache -M 80M && ccache -c && ccache -s && ccache -z - run: name: Build - command: ./scripts/build.sh RelWithDebInfo + command: | + mkdir -p build + cd build + cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo + make -j4 - run: name: CCache statistics command: ccache -s |