diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-02 03:37:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 03:37:17 +0200 |
commit | 91e9c0a7eef842da39cc9665dc7659e7aa931071 (patch) | |
tree | bc31655698becc7ade54a8844c28c64472d7f833 | |
parent | 6186df3562e33e92f04ed8c850204ceabc4746e1 (diff) | |
download | rneovim-91e9c0a7eef842da39cc9665dc7659e7aa931071.tar.gz rneovim-91e9c0a7eef842da39cc9665dc7659e7aa931071.tar.bz2 rneovim-91e9c0a7eef842da39cc9665dc7659e7aa931071.zip |
ci: .travis.yml: Minimize scope of osx_image directive. (#5420)
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 41dcbeaeae..1437f7e25b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,6 @@ sudo: false language: c -# macOS 10.11 -osx_image: xcode7.3 - env: global: # To force rebuilding of third-party dependencies, set this to 'true'. @@ -80,8 +77,10 @@ matrix: env: CLANG_SANITIZER=TSAN - os: osx compiler: clang + osx_image: xcode7.3 # macOS 10.11 - os: osx compiler: gcc-4.9 + osx_image: xcode7.3 # macOS 10.11 fast_finish: true before_install: .ci/before_install.sh |