From 43b2075918234700a9e3ca18eefdf3a75dc5ba4a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 1 Aug 2015 19:23:31 +0200 Subject: [PATCH] Don't check for all the languages in Travis language-specific builds. This should speed up configure and shorten its output. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 9b47611b7..69621cb9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -129,6 +129,7 @@ before_install: - if test -n "$SWIGLANG"; then export cxxflags=$(Tools/testflags.py --language $SWIGLANG --cxxflags --std=$CPPSTD) && echo $cxxflags; fi script: - echo 'Configuring...' && echo -en 'travis_fold:start:script.1\\r' + - if test -n "$SWIGLANG"; then CONFIGOPTS+=(--without-alllang --with-$SWIGLANG$PY3); fi - echo "${CONFIGOPTS[@]}" - ./autogen.sh && mkdir -p build/build && cd build/build && ../../configure "${CONFIGOPTS[@]}" - echo -en 'travis_fold:end:script.1\\r'