diff options
| author | bors <bors@rust-lang.org> | 2016-12-17 11:10:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-12-17 11:10:11 +0000 |
| commit | dea7ef3424ec77f855c41bc285603c2d6affef5b (patch) | |
| tree | 9bfb8e13b2bc6eb7c579a5efba20f56faaf8bd03 | |
| parent | f99d4dfef2cf3cbbf5699e44fddf019695e1d00d (diff) | |
| parent | 0f742e600b00f5602fc2e636f14990e11dc0c6f2 (diff) | |
| download | rust-dea7ef3424ec77f855c41bc285603c2d6affef5b.tar.gz rust-dea7ef3424ec77f855c41bc285603c2d6affef5b.zip | |
Auto merge of #38419 - alexcrichton:travis-osx-32-bit, r=brson
travis: Fix testing 32-bit OSX target We passed --target when we meant to pass --build, meaning we tested only the standard library for 32-bit, not the whole compiler like we intended.
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 7e5f4b25d2e..ea8c94af80b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ matrix: # OSX builders - env: > RUST_CHECK_TARGET=check - RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin + RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin SRC=. os: osx install: &osx_install_sccache > @@ -35,13 +35,13 @@ matrix: tar xJf - -C /usr/local/bin --strip-components=1 - env: > RUST_CHECK_TARGET=check - RUST_CONFIGURE_ARGS=--target=i686-apple-darwin + RUST_CONFIGURE_ARGS=--build=i686-apple-darwin SRC=. os: osx install: *osx_install_sccache - env: > RUST_CHECK_TARGET=check - RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin --disable-rustbuild + RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild SRC=. os: osx install: *osx_install_sccache |
