diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-09-24 17:18:05 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-09-24 18:18:05 -0400 |
commit | e2d79d0d94760758333a09fc88f1aa4ce3e2d9c3 (patch) | |
tree | 176bc969b85a9b0f182277fd6825aca79fe0ccbf /.travis/install.sh | |
parent | 08652e9b864e86acbe278f105c19d0da84c51c01 (diff) | |
download | cryptography-e2d79d0d94760758333a09fc88f1aa4ce3e2d9c3.tar.gz cryptography-e2d79d0d94760758333a09fc88f1aa4ce3e2d9c3.tar.bz2 cryptography-e2d79d0d94760758333a09fc88f1aa4ce3e2d9c3.zip |
Travis mac updates (#3169)
* update our travis configs to run against 10.10, 10.11, 10.12
Drops 10.9 from Travis. The xcode8 image is also currently not 10.12,
but is planned to become that soon see:
https://blog.travis-ci.com/2016-09-15-new-default-osx-image-coming/
* add output of sw_vers for mac builders on travis
* reorder
Diffstat (limited to '.travis/install.sh')
-rwxr-xr-x | .travis/install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index f77fdda7..4dfa7ee7 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -4,6 +4,7 @@ set -e set -x if [[ "$(uname -s)" == 'Darwin' ]]; then + sw_vers brew update || brew update brew outdated openssl || brew upgrade openssl |