The current OSX job often reach the 50min Travis-CI time limit. Split it in two jobs, which as of this commit took: - system: ~39min - user: ~9min
Signed-off-by: Philippe Mathieu-Daudé <phi...@redhat.com> --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index aa49c7b114..827f2252b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -107,7 +107,11 @@ matrix: - env: CONFIG="--disable-tcg" TEST_CMD="" compiler: gcc - - env: CONFIG="" + # OSX builds + - env: CONFIG="--disable-user" + os: osx + compiler: clang + - env: CONFIG="--disable-system --disable-tools --disable-docs --disable-guest-agent" os: osx compiler: clang # Python builds -- 2.17.2