]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Remove test from Circle
authorGeorge Lu <gclu@fb.com>
Tue, 5 Jun 2018 22:21:31 +0000 (15:21 -0700)
committerGeorge Lu <gclu@fb.com>
Tue, 5 Jun 2018 22:21:31 +0000 (15:21 -0700)
circle.yml

index df5f5547b16442094f59a7b97bd254d1cefaea90..ed50d59e5d9b8fc09d20c0fae2707f2af8291914 100644 (file)
@@ -41,15 +41,6 @@ test:
         if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then make -C lib libzstd-nomt && make clean; fi
       :
         parallel: true
-    - ? |
-        if [[ "$CIRCLE_NODE_INDEX" == "0" ]]                                    ; then ZSTD_LIB_COMPRESSION=0 CFLAGS= make -C lib libzstd.a; nm lib/libzstd.a | grep ".*\.o:" > tmplog; 
-                                                                                  ! grep "zstd_compress" tmplog && grep "zstd_decompress" tmplog && ! grep "dict" tmplog \
-                                                                                  && grep "zstd_v" tmplog && make clean && rm tmplog; fi &&
-        if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then ZSTD_LIB_DECOMPRESSION=0 CFLAGS= make -C lib libzstd.a; nm lib/libzstd.a | grep ".*\.o:" > tmplog; 
-                                                                                  grep "zstd_compress" tmplog && ! grep "zstd_decompress" tmplog && grep "dict" tmplog && \
-                                                                                  ! grep "zstd_v" tmplog && make clean && rm tmplog; fi
-      :
-        parallel: true
 
   post:
     - echo Circle CI tests finished