[tor-commits] [tor/maint-0.3.1] Fix CI homebrew checks for outdated packages.

nickm at torproject.org nickm at torproject.org
Wed Jul 26 19:39:24 UTC 2017


commit f18205f2e193773cb904823a71e24518dc26d521
Author: Isis Lovecruft <isis at torproject.org>
Date:   Mon Jul 24 18:26:36 2017 +0000

    Fix CI homebrew checks for outdated packages.
    
    (cherry picked from commit 8f8689f70235dc19cbc5092ea148af5772a9cdc3)
---
 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 8e0bb2afe..6ce2b87a9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -66,9 +66,9 @@ before_install:
 
 install:
   ## If we're on OSX use brew to install dependencies (for Linux, see the "apt:" section above)
-  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade openssl;    }; fi
-  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade libevent;   }; fi
-  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade pkg-config; }; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl    || brew upgrade openssl;    }; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libevent   || brew upgrade libevent;   }; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated pkg-config || brew upgrade pkg-config; }; fi
   ## Install the nightly channels of rustc and cargo and setup our toolchain environment
   - sh rustup.sh -y --default-toolchain nightly
   - source $HOME/.cargo/env





More information about the tor-commits mailing list