summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2019-08-07 14:54:48 -0700
committerRalph Giles <giles@thaumas.net>2019-08-07 15:58:05 -0700
commitae7aba9fff2ea59d79e2332b6b973f63d459f54d (patch)
tree787d9b0d013b738f9055ac943539854926347dfa /.travis.yml
parent7c78ab63ec6316a702212291f7c62f38c5e7ba89 (diff)
downloadogg-git-ae7aba9fff2ea59d79e2332b6b973f63d459f54d.tar.gz
Don't update homebrew on macOS travis builds.
The macOS system image already provides a version of xz through homebrew, so we don't need to explicitly install it through `brew bundle`. Skipping the `brew update` step reduces the runtime of test jobs from 6 minutes to 1, so we get test feedback more promptly. The xz package is really only needed for 'make dist' targets, so listing it in a Brewfile doesn't help users get started building the library. Better not to clutter the top-level directory further.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 0 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index ef525aa..f7187cb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,9 +12,6 @@ env:
- BUILD=AUTOTOOLS
- BUILD=CMAKE
-install:
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew bundle; fi
-
script:
- if [[ "$BUILD" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi
- if [[ "$BUILD" == "AUTOTOOLS" ]] ; then ./configure ; fi