]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
updated .travis.yml
authorPrzemyslaw Skibinski <inikep@gmail.com>
Tue, 28 Feb 2017 07:16:49 +0000 (08:16 +0100)
committerPrzemyslaw Skibinski <inikep@gmail.com>
Tue, 28 Feb 2017 07:16:49 +0000 (08:16 +0100)
.travis.yml

index 3c77a17e13ce3d1fde7c5d4ecc4ff35c2a3331f4..8399bd8a0f4634bd893e2f0fa0e02a32516fc1ab 100644 (file)
@@ -4,7 +4,7 @@ dist: trusty
 matrix:
   fast_finish: true
   include:
-    # other feature branches => short tests
+    # Ubuntu 14.04
     - env: Cmd="make libc6install && make -C tests test32"
     - env: Cmd='make valgrindinstall arminstall ppcinstall arm-ppc-compilation && make clean lib && CFLAGS="-O1 -g" make -C zlibWrapper valgrindTest && make -C tests valgrindTest'
 
@@ -25,10 +25,11 @@ script:
   #  cron & master          => full tests, as this is the final step towards a Release
   #  pull requests          => normal tests (job numbers 1-3)
   #  other feature branches => short tests (job numbers 1-2)
+  - @echo JOB_NUMBER=$JOB_NUMBER TRAVIS_BRANCH=$TRAVIS_BRANCH TRAVIS_EVENT_TYPE=$TRAVIS_EVENT_TYPE TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST
   - if [ "$TRAVIS_EVENT_TYPE" = "cron" ] || [ "$TRAVIS_BRANCH" = "master" ]; then
         FUZZERTEST=-T7mn sh -c "$Cmd" || travis_terminate 1;
     else
-        if [ "$TRAVIS_PULL_REQUEST" == "true" ] && [ $JOB_NUMBER -lt 4 ]; then
+        if [ "$TRAVIS_PULL_REQUEST" = "true" ] && [ $JOB_NUMBER -lt 4 ]; then
             sh -c "$Cmd" || travis_terminate 1;
         else
             if [ $JOB_NUMBER -lt 3 ]; then