Skip to content

Commit

Permalink
Run tests with SMT support in Dockerfile steemit#1510
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandeberg authored and Kiwonik committed Sep 13, 2017
1 parent dbb98b7 commit c65db7e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,28 @@ RUN \
programs/build_helpers/get_config_check.sh && \
rm -rf /usr/local/src/steem/build

RUN \
cd /usr/local/src/steem && \
git submodule update --init --recursive && \
mkdir build && \
cd build && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_STEEM_TESTNET=ON \
-DLOW_MEMORY_NODE=OFF \
-DCLEAR_VOTES=ON \
-DSKIP_BY_TX_ID=ON \
-DENABLE_SMT_SUPPORT=ON \
.. && \
make -j$(nproc) chain_test test_fixed_string plugin_test && \
./tests/chain_test && \
./programs/util/test_fixed_string && \
cd /usr/local/src/steem && \
doxygen && \
programs/build_helpers/check_reflect.py && \
programs/build_helpers/get_config_check.sh && \
rm -rf /usr/local/src/steem/build

RUN \
cd /usr/local/src/steem && \
git submodule update --init --recursive && \
Expand Down

0 comments on commit c65db7e

Please sign in to comment.