mirror of https://gitee.com/openkylin/libvirt.git
travis: move macOS before_install tasks into osx matrix entry
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>
This commit is contained in:
parent
3ee5f8115d
commit
b94c9ea5e6
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue