]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix travis.yml
authorPrzemyslaw Skibinski <inikep@gmail.com>
Thu, 16 Feb 2017 11:33:25 +0000 (12:33 +0100)
committerPrzemyslaw Skibinski <inikep@gmail.com>
Thu, 16 Feb 2017 11:33:25 +0000 (12:33 +0100)
.travis.yml

index b87d7d4766c8692aa33291796496e3f0366b1a31..82b2b03bb9c184e984e82413472f86d13a9527cb 100644 (file)
@@ -170,11 +170,11 @@ matrix:
 script:
   - JOB_NUMBER=$(echo $TRAVIS_JOB_NUMBER | sed -e 's:[0-9][0-9]*\.\(.*\):\1:')
 
-    #  cron & master => long tests, as this is the final step towards a Release
+  #  cron & master => long tests, as this is the final step towards a Release
+  #  dev => normal tests;  other feature branches => short tests (number > 11)
   - if [ "$TRAVIS_EVENT_TYPE" = "cron" ] || [ "$TRAVIS_BRANCH" = "master" ]; then
         FUZZERTEST=-T10mn sh -c "$Cmd" || travis_terminate 1;
     else
-        #  dev => normal tests;  other feature branches => short tests (number > 11)
         if [ "$TRAVIS_PULL_REQUEST" = "true" ] || [ $JOB_NUMBER -gt 11 ] || [ "$TRAVIS_BRANCH" = "dev" ]; then
             sh -c "$Cmd" || travis_terminate 1;
         fi