aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2018-06-02 13:34:08 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2018-06-04 16:48:16 +0000
commit70e49e8e1306cb7663c9f02c4cce02434f3d5ff6 (patch)
tree5ac7dc3c984fe8a7a0468c31e2e2aad60f9b560b /.travis.yml
parent3add4176eac827a841b04080a5ade84418cfc1a5 (diff)
travis: don't install asciidoctor's documentation.
Change-Id: I8d70cb7e940dc527c13e60195f4fd049cdff2481 Reviewed-on: https://code.wireshark.org/review/27954 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index dba384db37..0a58362de9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,11 +31,11 @@ before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then ./tools/macos-setup-brew.sh; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then PATH=/usr/local/opt/qt5/bin:$PATH; fi
# linux
- - if [ "$TRAVIS_OS_NAME" == "linux" ]; then if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi ; fi
+ - if [ "$TRAVIS_OS_NAME" == "linux" ]; then if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi ; fi
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo ./tools/debian-setup.sh --install-optional -qq; fi
- $CC --version
before_script:
- - sudo gem install asciidoctor
+ - sudo gem install asciidoctor --no-document
- mkdir build
- cd build
- cmake -GNinja -DENABLE_PCAP=${PCAP} ..