]> granicus.if.org Git - postgis/commitdiff
[travis] fix RUNTESTFLAGS to hold --verbose even when there is --dumprestore specified
authorDarafei Praliaskouski <me@komzpa.net>
Fri, 12 Jan 2018 10:29:34 +0000 (10:29 +0000)
committerDarafei Praliaskouski <me@komzpa.net>
Fri, 12 Jan 2018 10:29:34 +0000 (10:29 +0000)
Closes https://github.com/postgis/postgis/pull/187

git-svn-id: http://svn.osgeo.org/postgis/trunk@16268 b70326c6-7e19-0410-871a-916f4a2858ee

.travis.yml

index 1dadf3c3cf2be274827fdef81b1f16304a5ee998..3e186ded4d01c4c84b75df03f7f0193331fa62df 100644 (file)
@@ -1,6 +1,4 @@
 env:
-  global:
-    - RUNTESTFLAGS=-v
   matrix:
     - CFLAGS="-g -Og" MATRIX_EVAL="touch check-no-trailing-blanks"
     - CFLAGS="-g -O2 -fstack-protector -Wformat -Werror=format-security" LDFLAGS="-Wl,-Bsymbolic-functions -Wl,-z,relro"
@@ -17,6 +15,7 @@ before_install:
   - eval "${MATRIX_EVAL}"
   - sudo sh -c "echo /usr/lib/libeatmydata/libeatmydata.so >> /etc/ld.so.preload"
   - curl -sSfL https://github.com/mapbox/logbt/archive/v2.0.3.tar.gz | sudo tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/usr/local
+  - curl -sSfL https://raw.githubusercontent.com/mapbox/logbt/30c554dd37b6c96c23fc424f75910fc6d6696f00/bin/logbt | sudo tee /usr/local/bin/logbt > /dev/null
   - sudo logbt --setup
   - sudo service postgresql stop 9.6
   - sudo chown -hRL --from=postgres travis:travis /etc /var /tmp
@@ -58,11 +57,11 @@ script:
   - ./configure CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" $CONFIGURE_FLAGS || cat config.log
   - make -j
   - chmod 755 /home/travis
-  - logbt -- make check
-  - logbt -- make check RUNTESTFLAGS='--dumprestore'
+  - logbt -- make check "RUNTESTFLAGS=--verbose"
+  - logbt -- make check "RUNTESTFLAGS='--dumprestore --verbose'"
   - sudo make install
-  - logbt -- make installcheck
-  - logbt -- make installcheck RUNTESTFLAGS='--dumprestore'
+  - logbt -- make installcheck "RUNTESTFLAGS=--verbose"
+  - logbt -- make installcheck "RUNTESTFLAGS=--dumprestore --verbose"
 
 notifications:
   email: false