diff options
author | Greg Becker <becker33@llnl.gov> | 2019-06-19 02:50:45 +0200 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-06-18 17:50:45 -0700 |
commit | 1ea3d2911044384149d88b069b88d288598ad972 (patch) | |
tree | 17e046b5160a426ace64d6d80e90017a96c50028 /.travis.yml | |
parent | e925589fc7a79c2044a4453b944af5518404442c (diff) | |
download | spack-1ea3d2911044384149d88b069b88d288598ad972.tar.gz spack-1ea3d2911044384149d88b069b88d288598ad972.tar.bz2 spack-1ea3d2911044384149d88b069b88d288598ad972.tar.xz spack-1ea3d2911044384149d88b069b88d288598ad972.zip |
Ensure `brew update` is run before using brew in test environment (#11784)
All macos tests are failing because brew cannot install ccache
without updating brew. This ensures that brew update is run
before using brew in test environment.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index de1c20ffaa..91a95486e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -166,6 +166,7 @@ addons: - gcc - gnupg2 - ccache + update: true # ~/.ccache needs to be cached directly as Travis is not taking care of it # (possibly because we use 'language: python' and not 'language: c') |