From: Yann Collet Date: Sat, 2 Dec 2017 01:56:16 +0000 (-0800) Subject: circleci : removed cmaketest X-Git-Tag: v1.3.3^2~21^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6127592391bfda25154a5167954eda6b38e6efde;p=thirdparty%2Fzstd.git circleci : removed cmaketest strange error on pthread detection (seems a bug in cmake detection, since `make zstd` works perfectly with `-pthread` on same conf) --- diff --git a/circle.yml b/circle.yml index 3b9facced..07f2990dd 100644 --- a/circle.yml +++ b/circle.yml @@ -19,7 +19,7 @@ test: parallel: true - ? | if [[ "$CIRCLE_NODE_INDEX" == "0" ]] ; then make c11build && make clean; fi && - if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then make cmakebuild && make clean; fi + if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then make -C lib libzstd-nomt && make clean; fi : parallel: true - ? | @@ -44,7 +44,7 @@ test: parallel: true - ? | if [[ "$CIRCLE_NODE_INDEX" == "0" ]] ; then make -j regressiontest && make clean; fi && - if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then make -C lib libzstd-nomt && make clean; fi + if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then true; fi # can add one more test here : parallel: true