]> xenbits.xensource.com Git - libvirt.git/commitdiff
travis: move macOS before_install tasks into osx matrix entry
authorDaniel P. Berrangé <berrange@redhat.com>
Thu, 15 Mar 2018 10:10:53 +0000 (10:10 +0000)
committerDaniel P. Berrangé <berrange@redhat.com>
Thu, 15 Mar 2018 14:09:39 +0000 (14:09 +0000)
The list of commands we're running for the before_install task
is rather large. We have it all on one line because we're
wrapping it all in a test against TRAVIS_OS_NAME env variable.

By moving it into the osx matrix entry we can remove the need
for the conditional shell test. This lets us put each command
on a separate line making the steps clear to understand.

Fortunately the 'before_install' task does not have the crazy
behaviour whereby travis ignores errors and runs all commands
regardless, like the 'script' task does. The first command
failing will cause an immediate stop with error status.

Reviewed-by: Andrea Bolognani <abologna@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
.travis.yml

index 79f30f3090151b2f0bfb414e5864e6aff32d8769..9801981eca3340ebc4c7fca8e612c480dd7c3072 100644 (file)
@@ -14,6 +14,11 @@ matrix:
         - DISTCHECK_CONFIGURE_FLAGS="--with-init-script=systemd"
     - compiler: clang
       os: osx
+      before_install:
+        - brew update
+        - brew upgrade
+        - brew install rpcgen yajl xz
+        - brew link --force python@2
       script:
         # We can't run make distcheck/syntax-check because they
         # fail on macOS, but doing 'install' and 'dist' gives us
@@ -99,9 +104,6 @@ env:
     - PATH="/usr/local/opt/gettext/bin:/usr/local/opt/rpcgen/bin:$PATH"
     - VIR_TEST_DEBUG=1
 
-before_install:
-  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update && brew upgrade && brew install rpcgen yajl xz && brew link --force python@2; fi
-
 before_script:
   - ./autogen.sh --prefix=$(pwd)/install-root