travis: Tweak OSX image configuration

Somewhere between https://travis-ci.org/rust-lang/rust/jobs/192352185 and
https://travis-ci.org/rust-lang/rust/jobs/192440181 it looks like our
configuration for a newer OSX image was lost as LLDB has reverted itself back to
350. This fix appeared to work for the libc crate so let's see if we can
configure it to work for the rust repo as well.
This commit is contained in:
Alex Crichton 2017-01-16 18:43:38 -08:00
parent 45b273af4a
commit baff51c040
1 changed files with 4 additions and 2 deletions

View File

@ -8,8 +8,6 @@ git:
depth: 1 depth: 1
submodules: false submodules: false
osx_image: xcode8.2
matrix: matrix:
include: include:
# Linux builders, all docker images # Linux builders, all docker images
@ -41,6 +39,7 @@ matrix:
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin
SRC=. SRC=.
os: osx os: osx
osx_image: xcode8.2
before_script: &osx_before_script > before_script: &osx_before_script >
ulimit -c unlimited ulimit -c unlimited
install: &osx_install_sccache > install: &osx_install_sccache >
@ -59,6 +58,7 @@ matrix:
SRC=. SRC=.
DEPLOY=1 DEPLOY=1
os: osx os: osx
osx_image: xcode8.2
before_script: *osx_before_script before_script: *osx_before_script
install: *osx_install_sccache install: *osx_install_sccache
after_failure: *osx_after_failure after_failure: *osx_after_failure
@ -67,6 +67,7 @@ matrix:
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild
SRC=. SRC=.
os: osx os: osx
osx_image: xcode8.2
before_script: *osx_before_script before_script: *osx_before_script
install: *osx_install_sccache install: *osx_install_sccache
after_failure: *osx_after_failure after_failure: *osx_after_failure
@ -76,6 +77,7 @@ matrix:
SRC=. SRC=.
DEPLOY=1 DEPLOY=1
os: osx os: osx
osx_image: xcode8.2
before_script: *osx_before_script before_script: *osx_before_script
install: *osx_install_sccache install: *osx_install_sccache
after_failure: *osx_after_failure after_failure: *osx_after_failure